如何在javascript中获取URL?

How do get URL in javascript?

本问题已经有最佳答案,请猛点这里访问。

我想使用javascript获取当前页面的URL,有人有建议吗?

另外,我需要从hashtag获取内容,例如:xxxx.com/21我需要在javascript中获取21


使用下一步:

1
2
HREF = document.location.href
HASH = document.location.hash

http://www.w3schools.com/jsref/prop ou loc ou href.asphttp://www.w3schools.com/jsref/prop-loc-hash.asp


要获取整个当前URL,请使用:

1
var currentURL = window.location;

然后,要获得不带#本身的散列值,请使用:

1
2
var trimmedHash = window.location.hash.substr(1);
// returns `21` from `xxxx.com/#21`

window.location.hash返回21,substr(1)返回该字符串中除第一个字符以外的所有字符,从而删除#


尝试:

1
2
window.location.hash // will result #21
window.location.hash.substr(1) // will result 21

希望有帮助。