一种比较简单的页面之间的传值例子

 $(function(){
        var softname = location.search;

        var id = GetRequest(softname).id;
        
if(id){
console.log(id);

$(".bodyContentR").eq(id-1).addClass('activess').siblings('.activess').removeClass('activess');
}
        //页面间传值
        function GetRequest(str) {
            var theRequest = new Object();
            console.log();
            if (str.indexOf("?") != -1) {
                var strs = str.substr(1);
                strs = str.split("?")[1].split("&");
                for(var i = 0; i < strs.length; i ++) {
                    theRequest[strs[i].split("=")[0]]=(strs[i].split("=")[1]);
                }
            }
            return theRequest;
        }
    });
posted @ 2017-09-23 13:32  花无缺大哥  阅读(118)  评论(0编辑  收藏  举报