用Javascript获取参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Javascript获取参数相关的知识,希望对你有一定的参考价值。
url: http://www.example.com/?foo=barusage: $_GET['foo'] // 'bar'
var $_GET = {}; document.location.search.replace(/??(?:([^=]+)=([^&]*)&?)/g, function () { function decode(s) { return decodeURIComponent(s.split("+").join(" ")); } $_GET[decode(arguments[1])] = decode(arguments[2]); });
以上是关于用Javascript获取参数的主要内容,如果未能解决你的问题,请参考以下文章