jquery
terryhuang
这个作者很懒,什么都没留下…
展开
-
jQuery基础---filter()和find()
jQuery基础---filter()和find() 这是jQuery里常用的2个方法。 他们2者功能是完全不同的,而初学者往往会被误导。 首先 我们看.find()方法: 现在有一个页面,里面HTML代码为; 程序代码 div class="css"> p class="rain">测试1p> div> div class="rain"> p>转载 2013-10-17 09:09:54 · 675 阅读 · 0 评论 -
jQuery初学:find()方法及children方法的区别分析
通过以上的解释,可以总结如下: 1:children及find方法都用是用来获得element的子elements的,两者都不会返回 text node,就像大多数的jQuery方法一样。 2:children方法获得的仅仅是元素一下级的子元素,即:immediate children。 3:find方法获得所有下级元素,即:descendants of these elements转载 2013-10-17 09:19:31 · 1151 阅读 · 0 评论