0
我需要將用戶重定向到另一個頁面,我已經使用window.location.hash =「../pagePath.html」;但它確實重定向到頁面而沒有觸發JavaScript代碼,是一些jQuery Mobile解決方案嗎?像我可以在JS代碼中使用的「ajax-false」?使用window.location.hash後不執行Javascript
我需要將用戶重定向到另一個頁面,我已經使用window.location.hash =「../pagePath.html」;但它確實重定向到頁面而沒有觸發JavaScript代碼,是一些jQuery Mobile解決方案嗎?像我可以在JS代碼中使用的「ajax-false」?使用window.location.hash後不執行Javascript
你需要使用
window.location.href="../pagePath.html";
而
window.location.hash
會從URL返回的錨值。 爲例:你的瀏覽器的網址是www.google.com/accounts#gmail 然後如果你得到這樣
var anc=window.location.hash;
的window.location.hash然後會返回「的Gmail」。