作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有什么区别:
$("#orderedlist").find("li")
...还有...
$("#orderedlist li").
什么时候会使用其中一种而不是另一种?
最佳答案
$("#orderedlist").find("li")
速度更快,因为它使用 native JavaScript。$("#orderedlist li")
会比较慢,因为当您传入选择器时它会调用 Sizzle。
无论如何,两者都做同样的事情。
关于jquery - $ ("#orderedlist").find ("li") 和 $ ("#orderedlist li") 之间的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10200118/
有什么区别: $("#orderedlist").find("li") ...还有... $("#orderedlist li"). 什么时候会使用其中一种而不是另一种? 最佳答案 $("#order
我正在学习 jQuery this教程,但其中一个示例不起作用。 a.test { font-weight: bold; background: #fc0 }
Test.QuickCheck.Modifiers提供 OrderedList 和 SortedList。 SortedList 的文档说: Sorted xs: guarantees that xs
我现在有点困惑,我需要为 OrderedList 类编写删除方法,这就是我到目前为止所拥有的 boolean remove(E obj) { ListIterator iter = theLi
我是一名优秀的程序员,十分优秀!