jquery选择器返回不同的值
我有:
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。 这是为什么?
I've got:
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);
.
.
The first alert returns 1, but the second, on click, returns 0.
Why is that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是
您要找的吗?
Would
Not be what you're looking for?