js获取地址栏参数(限于?后面的)

复制代码
function getRequest() {
    var url = window.location.search; //获取url中"?"符后的字串
    var theRequest = new Object();
    if (url.indexOf("?") != -1) {
        var str = url.substr(1);
        strs = str.split("&");
        for(var i = 0; i < strs.length; i ++) {
            theRequest[strs[i].split("=")[0]]=decodeURI(strs[i].split("=")[1]);
        }
    }
    return theRequest;
}
复制代码

 

posted @   他的她  阅读(2033)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示