Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 ajax 加载页面并将其插入到当前页面的 div 中。如何标记它?我不使用 $.mobile.changePage,我只想知道如何使用 javascript 手动标记。请不要问为什么。
如果您实际上不知道自己在做什么,则如果您向项目添加任何标记,则需要调用“刷新”事件。
例如:$("#selectbox").html(optionList).selectmenu('refresh', true);
$("#selectbox").html(optionList).selectmenu('refresh', true);
标记以正常的 jQuery 方式添加到元素中。鉴于这不是问题,我不会讨论这个问题。
您可以在 FireFox 中使用 FireBug 查看元素并以与所有类完全相同的方式写出新元素,但这有点危险。