用Javascript解析httpget查询字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Javascript解析httpget查询字符串相关的知识,希望对你有一定的参考价值。
/* Parse GET parameters (based on http://www.netlobo.com/url_query_string_javascript.html) */ function parseHttpGet(key){ key = key.replace(/[[]/,"[").replace(/[]]/,"]"); var regexS = "[?&]"+key+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec(window.location.href); return ( results != null ? results[1] : false ); }
以上是关于用Javascript解析httpget查询字符串的主要内容,如果未能解决你的问题,请参考以下文章