我使用jquery在ul上动态添加LI,但是jquery移动主题没有应用。
这是我的代码
$('#employee_list').on("click", "a", function() {
var li_id = this.id;
$("#chart").html(" ");
var title = '<li id="visited"><a href="#" data-role="button" data-inline="true">True</a>';
$("#main_child_ul").append(title);
$('#org').trigger("create");
$("#org").jOrgChart({
chartElement : '#chart',
dragAndDrop : true
});
//$("#orgger").collapsibleset();
});
这是html
<ul id="org" style="display:none">
<li id="visited"><a href="#" data-role="button" data-inline="true">True</a>
<ul id="main_child_ul" class="children">
</ul>
</li>
</ul>
有任何帮助吗?这是动态添加树节点但主题不适用。
答案 0 :(得分:0)
将项目添加到列表视图时,您必须调用refresh()方法来更新添加的项目的样式。
例如:
$('#org').listview('refresh');
让我知道它是否有效。
由于