我写了以下代码
$(xml).find('list').each(function() {
$("#content_groups ul").append("<li><a href='#membergroup' onclick='functionare(\"" + $(this).attr("name") + "\")'>" + $(this).attr('name') + "</a><input type='checkbox' name='checkbox-0' id='checkbox-mini-0' class='custom' data-mini='true' /></li>");
});
$("#content_groups ul").listview('refresh');
结果并不如我所愿,即复选框根本没有 jquery css 样式。你能告诉我有什么问题吗?
结果是这样的:
我基本上是 jquery/javascript 的新手,我的项目只需要它来显示来自 xml 的一些结果。