js变成jq形式
for(vari=0;i<buttons.length;i++){buttons[i].onclick=function(){if(this.className=='on...
for (var i = 0; i < buttons.length; i++) {
buttons[i].onclick=function(){
if(this.className=='on'){
return;
}
var myIndex=parseInt(this.getAttribute('index'));
var offset=-600*(myIndex-index);
index=myIndex;
showButton();
if (animated==false) {
animate(offset);
}
}
} 展开
buttons[i].onclick=function(){
if(this.className=='on'){
return;
}
var myIndex=parseInt(this.getAttribute('index'));
var offset=-600*(myIndex-index);
index=myIndex;
showButton();
if (animated==false) {
animate(offset);
}
}
} 展开
1个回答
推荐于2016-09-04
展开全部
$(buttons).click(function() {
var me = $(this);
if (me.attr("class") == "on") {
return;
}
var myIndex = parseInt(me.attr('index'));
var offset = -600 * (myIndex - index);
index = myIndex;
showButton();
if (!animated) {
animate(offset);
}
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询