用Javascript解析httpget查询字符串

Posted

tags:

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

  1. /* Parse GET parameters (based on http://www.netlobo.com/url_query_string_javascript.html) */
  2. function parseHttpGet(key){
  3. key = key.replace(/[[]/,"[").replace(/[]]/,"]");
  4. var regexS = "[?&]"+key+"=([^&#]*)";
  5. var regex = new RegExp( regexS );
  6. var results = regex.exec(window.location.href);
  7. return ( results != null ? results[1] : false );
  8. }

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

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

JavaScript 从脚本元素的src属性中解析查询字符串

在JavaScript中快速简便地解析查询字符串

javascript中的sql查询解析

javascript与php字符串解析函数

JavaScript无法从Java解析用Gson序列化的字符串[重复]