日期:2014-05-16  浏览次数:20334 次

jquery代码可以这样理解吗?
$("#focus .btn span").stop(true,false).animate({"opacity":"0.4"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); 这段代码怎么解释?
是否可以这样理解?
$("#focus .btn span")
.stop(true,false)
.animate({"opacity":"0.4"},300)
.eq(index)
.stop(true,false)
.animate({"opacity":"1"},300); 
每行代码是什么意思?

------解决方案--------------------
$("#focus .btn span")//选择器
.stop(true,false)//停止当前对象的动画效果
.animate({"opacity":"0.4"},300)//添加动画效果
.eq(index)//过滤 ,从上一个选择器中,找到指定位置的元素
.stop(true,false)//以下是对指定位置的对象进行操作和上边一样
.animate({"opacity":"1"},300);