获取URL查询字符串参数的Javascript函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取URL查询字符串参数的Javascript函数相关的知识,希望对你有一定的参考价值。

Here is a small function [[lobo235](http://www.netlobo.com/javascript_tooltips.html "Javascript Tool-tips")] wrote that will parse the window.location.href value and return the value for the parameter you specify. It does this using javascript's built in regular expressions.
  1. function gup( name )
  2. {
  3. name = name.replace(/[[]/,"\[").replace(/[]]/,"\]");
  4. var regexS = "[\?&]"+name+"=([^&#]*)";
  5. var regex = new RegExp( regexS );
  6. var results = regex.exec( window.location.href );
  7. if( results == null )
  8. return "";
  9. else
  10. return results[1];
  11. }

以上是关于获取URL查询字符串参数的Javascript函数的主要内容,如果未能解决你的问题,请参考以下文章

使用jQuery / Javascript(查询字符串)获取查询字符串参数url值

使用 jQuery / Javascript (querystring) 获取查询字符串参数 url 值

[JAVASCRIPT]从url查询字符串获取参数

编写JavaScript函数解析查询字符串

编写JavaScript函数解析查询字符串

javascript 获取get参数方法(获取url参数方法)详解