码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-09-23 14:32:34      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:var   ons   log   简单的   ++   cti   str   remove   ddc   

 $(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;
        }
    });

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

标签:var   ons   log   简单的   ++   cti   str   remove   ddc   

原文地址:http://www.cnblogs.com/wangleiaiwanghongzhenbubian/p/7580931.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!