jquery中children()和children有什么区别?若children()是一个函数的话,children()[0]是什么?
children.children等等,具体说一说下标及这些细微的区别,谢谢!例如:$("#contactlist").children()[1].children()[...
children.children等等,具体说一说下标及这些细微的区别,谢谢!
例如:
$("#contactlist").children()[1].children()[0].innerHTML=$(".contactname").val();
出现错误!!!!!!
$("#contactlist").children()[1]=temp;
$(temp).children()[0].innerHTML=$(".contactname").val();就可以!!!!
具体讲一讲!!!
还有,什么时候用children,什么时候用children().......... 展开
例如:
$("#contactlist").children()[1].children()[0].innerHTML=$(".contactname").val();
出现错误!!!!!!
$("#contactlist").children()[1]=temp;
$(temp).children()[0].innerHTML=$(".contactname").val();就可以!!!!
具体讲一讲!!!
还有,什么时候用children,什么时候用children().......... 展开
2012-07-20
展开全部
$("#contactlist").children()[1].children()[0].innerHTML=$(".contactname").val();
这里面
$("#contactlist").children()[1]
执行完的时候 返回的是一个dom对象
children()方法是jQuery对象的方法 不出错才怪。。
$($("#contactlist").children()[1]).children()[0].innerHTML=$(".contactname").val();
这样写就OK
PS:真心不懂您说的“什么时候用children”是什么意思。
这里面
$("#contactlist").children()[1]
执行完的时候 返回的是一个dom对象
children()方法是jQuery对象的方法 不出错才怪。。
$($("#contactlist").children()[1]).children()[0].innerHTML=$(".contactname").val();
这样写就OK
PS:真心不懂您说的“什么时候用children”是什么意思。
追问
我的意思是什么时候用.children什么时候用.children()
children()和children有什么区别?
谢谢!!
追答
.children这种写法意思是对象的children属性
jQuery对象的children属性指的是一个方法,.children 只是返回一个方法,并不会执行这个方法,.children()这种写法才是会去执行这个方法,并返回方法执行结果
DOM对象就没children这个属性
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询