我需要将用户重定向到另一个页面,我使用了window.location.hash =“../pagePath.html”;但它确实重定向到页面而不触发JavaScript代码,这是一些jQuery Mobile解决方案吗?我可以在JS代码中使用“ajax-false”之类的东西吗?
答案 0 :(得分:3)
你需要使用
window.location.href="../pagePath.html";
而
window.location.hash
将从网址返回锚值。 例如:您的浏览器网址是www.google.com/accounts#gmail 那么如果你得到像这样的window.location.hash
var anc=window.location.hash;
然后将返回“gmail”。