无法改变jQuery Mobile的动态生成的按钮上的文字

问题描述 投票:1回答:1

我在PhoneGap的应用程序中使用jQuery Mobile的创建按钮,动态等。

var table = document.getElementById("skiTable");
var row = document.getElementById("skiparticulars");
var clone = table.rows[1].cloneNode(true);

var skiFile = clone.cells[0].getElementsByTagName('input')[0];
var skiformTitle = clone.cells[0].getElementsByTagName('input')[1];

skiFile.id = "skifile" + skiRowCount;
skiFile.value = "";
skiformTitle.id = "formTitle" + skiRowCount;

skiformTitle.value = "";
row.appendChild(clone);
skiRowCount++;

HTML代码是像

<table>
 <tr>
   <td>
      <input type="hidden" id="skifile1" />
      <input type="button" id="formTitle1"/>
   </td>
 <tr>
</table>

这里是变革按钮值的代码:

$("#skifile" + k).val(results.rows.item(j).ski_file);

        $('#formTitle'+ k).val(results.rows.item(j).formTitle);
        $("#formTitle"+k).button("refresh");
tried this also 
//$("#formTitle" + k).prop('value',results.rows.item(j).formTitle).button("refresh");

但它永远不会改变的价值。

我提到这个qazxsw POI

jquerymobile dynamically changing text for button issue

javascript jquery jquery-mobile cordova
1个回答
2
投票

jQuery Mobile 1.4 example:

工作示例:How to change the text of a button in jQuery?

JavaScript

http://jsfiddle.net/Gajotres/8x8HE/

Button HTML without text:

$('#formTitle1').parent().html($('#formTitle1').parent().html() + 'Button text');

Button HTML with text

<div class="ui-btn ui-input-btn ui-corner-all ui-shadow">
    <input type="button" id="formTitle1">
</div>

如果你想了解如何定制jQuery Mobile的元素阅读<div class="ui-btn ui-input-btn ui-corner-all ui-shadow"> <input type="button" id="formTitle1">Button text </div> 文章。

jQuery Mobile 1.3 and below example:

工作示例:this

JavaScript

http://jsfiddle.net/Gajotres/wLzA7/

Button HTML without text:

$('#formTitle1').parent().find('span span').html('Button text');

Button HTML with text

<div data-corners="true" data-shadow="true" data-iconshadow="true" data-wrapperels="span" data-theme="c" data-disabled="false" class="ui-btn ui-shadow ui-btn-corner-all ui-btn-up-c" aria-disabled="false">
    <span class="ui-btn-inner">
        <span class="ui-btn-text"></span>
    </span>
    <input type="button" id="formTitle1" class="ui-btn-hidden" data-disabled="false"/>
</div>
© www.soinside.com 2019 - 2024. All rights reserved.