$(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;
}
});
时间: 2024-11-05 07:00:36