jQuery Selectors

Posted 猿哥说

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery Selectors相关的知识,希望对你有一定的参考价值。

Selectors

  1. 尽可能的使用 ID 选择器,因为它会调用浏览器原生方法 document.getElementById 查找元素。当然直接使用原生 document.getElementById 方法性能会更好;

  2. 在父元素中选择子元素使用 .find()方法性能会更好, 因为 ID 选择器没有使用到 Sizzle 选择器引擎来查找元素;

// Not recommended
var $productIds = $("#products .class");

// Recommended
var $productIds = $("#products").find(".class");


猿哥 | 微信/QQ号:2345775




以上是关于jQuery Selectors的主要内容,如果未能解决你的问题,请参考以下文章

jQuery Selectors

JQuery Selectors(选择器) 方法说明

从附加元素获取 jQuery 对象的更简单方法

jQuery应用 代码片段

Visual Studio 2012-2019的130多个jQuery代码片段。

「网易官方」极客战记(codecombat)攻略-网页开发2-充满事件的选择器-eventful-selectors