标签: javascript jquery url
如何使用Javascript或Jquery从URL获取参数值更简单!
我收到此网址
http://website.in/instant/#mystring
我想要
mystring
只有#从URL
答案 0 :(得分:4)
window.location.hash返回带有“#”的哈希值,因此您可以使用:window.location.hash.substr(1)
window.location.hash
window.location.hash.substr(1)
答案 1 :(得分:3)
你想要window.location.hash。