switch参数问题
$(function () {
$("span").each(function (index) {
switch (index) {
case 0:
$(this).fadeTo(3000,0.2);
break;
case 1:
$(this).fadeTo(3000,0.4);
break;
case 2:
$(this).fadeTo(3000,0.6);
break;
}
});
});
$("span").each(function (index) { 这里的index是参数的意思吗?
switch (index) { 这里的index是条件的意思吗?