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');
正常に動作しますが、外部スクリプトを使用できません!
何か案が ?
ありがとう。
$ .mobile.changePage('nextPage.html'、'slide');
これは実際にはajaxリクエストと同じDOMに読み込まれ、ajaxが成功したときにスクリプトを記述しない限り、ajaxはスクリプトを実行できないことがわかります。したがって、document.readyではなくpageinitでスクリプトを呼び出す必要があります。あなたがポイントを得たことを願っています。