1

こんにちは、ajax を使用せずに、あるページから別のページに移動したいと考えています。ajax を使用できますが$.mobile.changePage('test.html')、blackberry5+ バージョンをターゲットにしています。window.locationとisの代わりに、<a href="test.html">利用可能な他のオプションがあります。任意の提案をいただければ幸いです。

4

2 に答える 2

1

試す:

window.location.href = "test.html"; また:

window.location.assign("test.html"); window.location.replace("test.html");

于 2012-07-26T09:07:46.910 に答える
0

よくわかりませんが、onclick="setLocation('newurl.html');" 別の方法ですか?

于 2012-07-26T08:46:58.543 に答える