2011-12-23 24 views

回答

0

我有同樣的問題。我結束了在window.location.href屬性中尋找哈希字符#並手動捕獲哈希:

var hash = window.location.href.indexOf('#') == 
    -1 ? "" : window.location.href.substring(window.location.href.indexOf('#') + 1); 
相關問題