如何使用JavaScript获取当前网址
这个问题在这里已经有了答案:
这是正确的答案:
window.location.host + window.location.pathname;
你要这个:
var location = window.location.host + window.location.pathname;
请参阅文档:https://developer.mozilla.org/en-US/docs/Web/API/Location
链接地址: http://www.djcxy.com/p/22537.html