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.
jQuery 移动更改页面事件在内部页面中不起作用
$.mobile.changePage('xyz.html');
如果我在任何网址中使用数据预取。
谁能帮我解决?
如果我理解正确,这与数据预取无关。如果您使用多个内部页面预加载另一个HTML文件,则只会加载第一个内部页面,其他所有内容都将被丢弃,包括提到的HTML文件的 HEAD 部分。
HTML
有两篇关于这种情况的好文章,here和here,要透明的是我的个人博客。
简而言之,只有第一个(原始)HTML 文件应该有多个内部页面,通常是最常用的页面。其他所有内容都应该在外部HTML文件中,以防止大DOM尺寸。
DOM