如何使用javascript获取当前URL

时间:2013-10-03 04:31:47

标签: javascript converter

我有一个当前网址:

http://www.test.com/p1234?utm_source=....

如何获取格式为http://www.test.php/p1234

的网址

我使用的是javascript document.URL,结果是http://www.test.com/p1234?utm_source=....

2 个答案:

答案 0 :(得分:2)

这是正确答案:

window.location.host + window.location.pathname;

答案 1 :(得分:0)

你想要这个:

var location = window.location.host + window.location.pathname;

请参阅文档:https://developer.mozilla.org/en-US/docs/Web/API/Location