function changepic(curindex) {
for (var j = 0; j < pic.length; j++) {
pic[j].style.display = "none";
}
pic[curindex].style.display = "block";
index = curindex;
}
用的这个 不知道对布局有影响没
for (var j = 0; j < pic.length; j++) {
pic[j].style.display = "none";
}
pic[curindex].style.display = "block";
index = curindex;
}
用的这个 不知道对布局有影响没
2016-07-31
if(titles.length!=divs.length)
return ;
id加不上的大部分可能是 if判断这里加了{return;},注意别加{} 直接return
return ;
id加不上的大部分可能是 if判断这里加了{return;},注意别加{} 直接return
2016-07-30
pic.style.marginTop=-170*curIndex+'px'; 我怎么发现大家都是用这个来做的,我是这样做的是不是有问题
2016-07-27