mydd = $(‘.plist‘); mydd.each(function(i){ $(this).click(function(){ mydl.eq(i).hide("slow"); }) });
注意:此处 this 指代的是 DOM 对象而非 jQuery 对象。
如果遍历的是图片,你就可以用以下的方式:
this.src = "test" + i + ".jpg";
时间: 2024-10-10 14:59:09
mydd = $(‘.plist‘); mydd.each(function(i){ $(this).click(function(){ mydl.eq(i).hide("slow"); }) });
注意:此处 this 指代的是 DOM 对象而非 jQuery 对象。
如果遍历的是图片,你就可以用以下的方式:
this.src = "test" + i + ".jpg";