js中的request

时间:2014-10-10 22:20:25   收藏:0   阅读:233

function GetRequest() {
var url = location.search; //获取url中"?"符后的字串
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(1);//去掉字符串里的 ?
var strs = str.split("&"); //将字符串str 根据 & 分割成多个字符串,并存入数组strs

for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = strs[i].split("=")[1];

}
}
return theRequest;
}

原文:http://www.cnblogs.com/xjt360/p/4017899.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!