jQuery Selectors
Posted 猿哥说
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery Selectors相关的知识,希望对你有一定的参考价值。
Selectors
尽可能的使用 ID 选择器,因为它会调用浏览器原生方法
document.getElementById
查找元素。当然直接使用原生document.getElementById
方法性能会更好;在父元素中选择子元素使用
.find()
方法性能会更好, 因为 ID 选择器没有使用到 Sizzle 选择器引擎来查找元素;
// Not recommended
var $productIds = $("#products .class");
// Recommended
var $productIds = $("#products").find(".class");
猿哥 | 微信/QQ号:2345775
以上是关于jQuery Selectors的主要内容,如果未能解决你的问题,请参考以下文章