如何使用javascript获取没有$ _GET参数的url路径?

时间:2013-08-14 04:35:51

标签: javascript jquery url

如果我当前的页面采用这种格式......

http://www.mydomain.com/folder/mypage.php?param=value

有没有一种简单的方法来获得这个

http://www.mydomain.com/folder/mypage.php

使用javascript?

5 个答案:

答案 0 :(得分:6)

不要做这个正则表达式和分裂的东西。使用浏览器的内置URL解析器。

window.location.origin + window.location.pathname

如果您需要解析不是当前页面的URL:

var url = document.createElement('a');
url.href = "http://www.example.com/some/path?name=value#anchor";
console.log(url.origin + url.pathname);

并支持IE(因为IE没有location.origin):

location.protocol + '//' + location.host + location.pathname;

(来自https://stackoverflow.com/a/6168370/711902的灵感)

答案 1 :(得分:3)

尝试使用split之类的

var url = "http://www.mydomain.com/folder/mypage.php?param=value";
var url_array = url.split("?");
alert(url_array[0]);    //Alerts http://www.mydomain.com/folder/mypage.php

即使我们在GET中有很多参数,第一段也会是URL没有GET参数。

这是DEMO

答案 2 :(得分:2)

试试这个:

var url=document.location.href;
var mainurl=url.split("?");
alert(mainurl[0]);

答案 3 :(得分:0)

尝试

var result = yourUrl.substring(0, yourUrl.indexOf('?'));

Working demo

答案 4 :(得分:0)

var options = decodeURIComponent(window.location.search.slice(1))
     .split('&')
     .reduce(function _reduce (/*Object*/ a, /*String*/ b) {
     b = b.split('=');
     a[b[0]] = b[1];
     return a;
   }, {});