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.
现在,要重定向到我使用的另一个页面:
document.location.href = "nextPage.html"
它工作正常,但没有任何动画!
所以我尝试了:
$.mobile.changePage('nextPage.html','slide');
它工作正常,但我不能使用我的外部脚本!
任何想法 ?
谢谢。
这实际上与 ajax 请求加载到相同的 DOM 中,并且您知道 ajax 无法运行脚本,除非您在 ajax 成功时编写它们。所以你必须在 pageinit 中调用你的脚本而不是 document.ready。希望你明白了。