使用window.location.hash后没有执行Javascript

时间:2012-07-12 20:33:17

标签: jquery-mobile

我需要将用户重定向到另一个页面,我使用了window.location.hash =“../pagePath.html”;但它确实重定向到页面而不触发JavaScript代码,这是一些jQuery Mobile解决方案吗?我可以在JS代码中使用“ajax-false”之类的东西吗?

1 个答案:

答案 0 :(得分:3)

你需要使用

window.location.href="../pagePath.html";

window.location.hash 

将从网址返回锚值。 例如:您的浏览器网址是www.google.com/accounts#gmail 那么如果你得到像这样的window.location.hash

var anc=window.location.hash;

然后将返回“gmail”。