我终于成功地将用户输入项添加到检查列表中。然而,当它们被添加时,它们并没有采用 Jquery Mobiles 风格。
这是正在发生的事情的屏幕截图
这是 HTML:
<h3>My items</h3>
<table id="myTable">
<tr>
<td>
<label for="checkbox65">
<input name="checkbox65" class="checkbox65" type="checkbox" />
My stuff
</label>
</td>
</tr>
<tr>
<td>
<fieldset data-role="controlgroup">
<label for="textinput4">
Add new item
<input name="new_item" id="textinput4" placeholder="" value="" type="text" />
</label>
</fieldset>
<button id="add">Add</button>
/td>
</tr>
</table>
这是将用户输入项添加到检查列表的脚本:
<script type="text/javascript">
$(document).on('click', '#add', function(e) {
var $this = $(this);
var $firstRow = $this.closest('table').find('tr:first');
var $newRow = $firstRow.clone();
var input = $newRow.find(':input').remove();
input.prop('checked', false);
$newRow.empty().append(input).append(' ' + $('#textinput4').val());
$newRow.insertAfter($firstRow);
});
</script>
我读到了一个不同的问题,也许我可以包括
$('[type='submit']').button();
为了设置用户输入项的样式。但是,我不确定这是否适合我,或者我将把它放在我的脚本中的什么地方?
谢谢。