解析JavaScript中的URL


76

如何使用JavaScript(以及jQuery)解析URL?

例如,我的字符串中有这个

url = "http://example.com/form_image_edit.php?img_id=33"

我想得到的价值 img_id

我知道我可以通过使用PHP轻松地做到这一点parse_url(),但我想知道JavaScript怎么可能。


4
使用php,您不需要使用parse_url()函数来获取img_id,只需使用$ _GET ['img_id]
mdaguerre 2011年


2
当您需要的是以下所有时,下面的正确答案是完全荒谬的window.location.search.split('=')[1]。我不敢相信他为此获得了75票!!
亚当·斯彭斯

3
@AdamSpence window.location仅适用于页面URL,不适用于任意URL字符串。
弗雷泽·哈里斯

Answers:


121

您可以使用创建a-element的技巧,将URL添加到其中,然后使用其Location对象

function parseUrl( url ) {
    var a = document.createElement('a');
    a.href = url;
    return a;
}

parseUrl('http://example.com/form_image_edit.php?img_id=33').search

将输出: ?img_id=33


您也可以使用php.js在JavaScript中获取parse_url函数


更新(2012-07-05)

如果您需要做除超简单URL处理之外的任何事情,我建议使用出色的URI.js库。


4
等效于url.match(/\?.+/)[0],它稍短一些,可能快得多。
RobG 2011年

9
哇,从来没有听说过这个技巧,它使我度过了世界上最丑陋的正则表达式之后的一天=)
Greg Guida

2
@Christophe不,它告诉您哪些属性可用。当您将URL分配给锚元素的href属性时,它将获得Location对象的所有属性。
Sindre Sorhus,2012年

1
@SindreSorhus很棒!您能否共享一份说明它并详细说明浏览器支持的参考资料?具有src属性(链接,iframe)的元素是否也适用?
克里斯多夫

1
window.location.search
Adam Spence

36

如果你的字符串被称为s然后

var id = s.match(/img_id=([^&]+)/)[1]

会给你的。


10

试试这个:

var url = window.location;
var urlAux = url.split('=');
var img_id = urlAux[1]

使用这种方法后,我如何才能找到被拆分成几个?
蒂姆·马歇尔



5

是从Google获得的,请尝试使用此方法

function getQuerystring2(key, default_) 
{ 
    if (default_==null) 
    { 
        default_=""; 
    } 
    var search = unescape(location.search); 
    if (search == "") 
    { 
        return default_; 
    } 
    search = search.substr(1); 
    var params = search.split("&"); 
    for (var i = 0; i < params.length; i++) 
    { 
        var pairs = params[i].split("="); 
        if(pairs[0] == key) 
        { 
            return pairs[1]; 
        } 
    } 


return default_; 
}

2
如果查询参数的值包含'%3D'('=')或'%26'('&'),则此操作将失败。要解决此问题,请在for循环中使用它:``if(pairs.shift()== key){return pair.join('='); }并在'&'上分割后进行不转义。
michielbdejong

3

这应该在神户的答案中解决了一些极端情况:

function getQueryParam(url, key) {
  var queryStartPos = url.indexOf('?');
  if (queryStartPos === -1) {
    return;
  }
  var params = url.substring(queryStartPos + 1).split('&');
  for (var i = 0; i < params.length; i++) {
    var pairs = params[i].split('=');
    if (decodeURIComponent(pairs.shift()) == key) {
      return decodeURIComponent(pairs.join('='));
    }
  }
}

getQueryParam('http://example.com/form_image_edit.php?img_id=33', 'img_id');
// outputs "33"

2

我编写了一个JavaScript网址解析库URL.js,您可以将其用于此目的。

例:

url.parse("http://mysite.com/form_image_edit.php?img_id=33").get.img_id === "33"

不,我以前从未听说过purl.js。
凯文·考克斯

答案就在您的上方。您的代码比purl快28倍,而且更干净,但是我无法在当前状态下使用它。我在github上创建了一个问题供您查看。谢谢
Steven Vachon

2
您只是忘记了运行构建步骤。但是新版本不再需要构建步骤,因此现在无需担心:D
Kevin Cox 2013年

2

这样的事情应该为您工作。即使存在多个查询字符串值,该函数也应返回所需键的值。

function getQSValue(url) 
{
    key = 'img_id';
    query_string = url.split('?');
    string_values = query_string[1].split('&');
    for(i=0;  i < string_values.length; i++)
    {
        if( string_values[i].match(key))
            req_value = string_values[i].split('=');    
    }
    return req_value[1];
}


1
function parse_url(str, component) {
  //       discuss at: http://phpjs.org/functions/parse_url/
  //      original by: Steven Levithan (http://blog.stevenlevithan.com)
  // reimplemented by: Brett Zamir (http://brett-zamir.me)
  //         input by: Lorenzo Pisani
  //         input by: Tony
  //      improved by: Brett Zamir (http://brett-zamir.me)
  //             note: original by http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
  //             note: blog post at http://blog.stevenlevithan.com/archives/parseuri
  //             note: demo at http://stevenlevithan.com/demo/parseuri/js/assets/parseuri.js
  //             note: Does not replace invalid characters with '_' as in PHP, nor does it return false with
  //             note: a seriously malformed URL.
  //             note: Besides function name, is essentially the same as parseUri as well as our allowing
  //             note: an extra slash after the scheme/protocol (to allow file:/// as in PHP)
  //        example 1: parse_url('http://username:password@hostname/path?arg=value#anchor');
  //        returns 1: {scheme: 'http', host: 'hostname', user: 'username', pass: 'password', path: '/path', query: 'arg=value', fragment: 'anchor'}

  var query, key = ['source', 'scheme', 'authority', 'userInfo', 'user', 'pass', 'host', 'port',
      'relative', 'path', 'directory', 'file', 'query', 'fragment'
    ],
    ini = (this.php_js && this.php_js.ini) || {},
    mode = (ini['phpjs.parse_url.mode'] &&
      ini['phpjs.parse_url.mode'].local_value) || 'php',
    parser = {
      php: /^(?:([^:\/?#]+):)?(?:\/\/()(?:(?:()(?:([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?()(?:(()(?:(?:[^?#\/]*\/)*)()(?:[^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
      strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
      loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/\/?)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/ // Added one optional slash to post-scheme to catch file:/// (should restrict this)
    };

  var m = parser[mode].exec(str),
    uri = {},
    i = 14;
  while (i--) {
    if (m[i]) {
      uri[key[i]] = m[i];
    }
  }

  if (component) {
    return uri[component.replace('PHP_URL_', '')
      .toLowerCase()];
  }
  if (mode !== 'php') {
    var name = (ini['phpjs.parse_url.queryKey'] &&
      ini['phpjs.parse_url.queryKey'].local_value) || 'queryKey';
    parser = /(?:^|&)([^&=]*)=?([^&]*)/g;
    uri[name] = {};
    query = uri[key[12]] || '';
    query.replace(parser, function($0, $1, $2) {
      if ($1) {
        uri[name][$1] = $2;
      }
    });
  }
  delete uri.source;
  return uri;
}

参考


1
var url = window.location;
var urlAux = url.split('=');
var img_id = urlAux[1]

为我工作。但是第一个var应该是var url = window.location.href


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.