我有:
j=0;
an = $("#thumbSlider" + j + " a").eq(1);
ap = $("#thumbSlider" + j + " a").eq(0);
jQuery("div#thumbSlider" + j + " a").each(function(z) {
jQuery(this).bind("click", function(){
ad = jQuery("#thumbSlider" + j + " a").eq(1);
alert(ad.length);
。
第一个警报返回1,但第二个警告返回0。 那是为什么?
答案 0 :(得分:0)
将
jQuery(this).bind("click", function(){
alert(this.length);
不是你想要的?