2009-08-31 67 views

回答

1

如果你想在當前文檔的URL的片段標識符:

location.hash 

如果你想有一個字符串的它:

str.match(/^[^#]*#(.*)/)[1] 
1
window.location.hash 

將返回URL的一部分#符號後面,包括#符號。

window.location.hash.substring(1); 

將返回主題的詳細信息...

查看更多關於

window.location 

here

1
document.location.hash.substring(1) // will return "theme-details" minus the hash