jQuery 基础

Posted CodingSherlock

tags:

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

jQuery全局命名空间中定义的唯一两个变量  jQuery $

$(document).ready(fn);//== 在DOMContentLoaded时触发,浏览器不支持时,会在load时触发
$(fn)
jQuery.noConflict();//还原$()为初始值

 jQuery对象返回的类数组对象,拥有length属性,包含selector(选择字符串),context(对象上下文),jquery(jQuery版本号,用于区分jquery对象)

常见API

.each() : Iterate over a jQuery object, executing a function for each matched element.

https://api.jquery.com/each/

在回调函数中调用return false来终止循环

.map() : Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.

https://api.jquery.com/map/

.index() : Search for a given element from among the matched elements.

https://api.jquery.com/index/

 If the element is not found, .index() will return -1.

is() : Check the current matched the set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.

https://api.jquery.com/is/

 

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

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

markdown 在WordPress中使用jQuery代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

很实用的JQuery代码片段(转)

几个有用的JavaScript/jQuery代码片段(转)

几个非常实用的JQuery代码片段