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.
我一直在尝试使用 jQTouch 替换页面的内容,但没有成功。我的问题与这个问题有关
$('div.current').replaceAll(html)
当我尝试这样做时,整个页面都会消失。有人对此有解决方案吗?
你应该尝试用你的新内容创建一个新的 div,然后过渡到那个。
使用 JQT 的 r148 ...
var new_div = '<div id="new_div">Hello</div>'; $('#jqt').append(new_div); jQT.goTo('#new_div','slide');
如果您不使用 148,我认为您可以附加到正文标签。
或者,也许你可以只使用$('div.current').html(html)不会替换你需要的 div 本身,只是里面的内容。
$('div.current').html(html)