嗨我想在没有ajax的情况下从一个页面导航到另一个页面。使用ajax我们可以使用$.mobile.changePage('test.html')
但我的目标是blackberry5 +版本。除了window.location
和<a href="test.html">
之外,还有其他可用选项。任何建议将不胜感激。
答案 0 :(得分:1)
尝试:
window.location.href =“test.html”; OR:
window.location.assign( “test.html的”); window.location.replace( “的test.html”);
答案 1 :(得分:0)
不确定我理解但是onclick =“setLocation('newurl.html');”是另一种方法吗?