关于转换器:如何使用javascript获取当前URL

How to get current URL using javascript

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

我有一个当前的URL:

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

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

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


这是正确的答案:

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


你要这个:

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

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