如何在JavaScript中获取URL?
这个问题在这里已经有了答案:
要获取整个当前网址,请使用:
var currentURL = window.location;
然后得到散列,没有#
本身,使用:
var trimmedHash = window.location.hash.substr(1);
// returns `21` from `xxxx.com/#21`
window.location.hash
返回#21,substr(1)返回除该字符串的第一个字符以外的所有字符,从而删除#
。
使用下一个:
HREF = document.location.href
HASH = document.location.hash
http://www.w3schools.com/jsref/prop_loc_href.asp
http://www.w3schools.com/jsref/prop_loc_hash.asp
尝试:
window.location.hash // will result #21
window.location.hash.substr(1) // will result 21
希望有所帮助。
链接地址: http://www.djcxy.com/p/70237.html