码迷,mamicode.com
首页 > Web开发 > 详细

jQuery 基础

时间:2018-08-25 14:31:21      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:http   cut   exec   mat   ict   sel   str   $()   exe   

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 基础

标签:http   cut   exec   mat   ict   sel   str   $()   exe   

原文地址:https://www.cnblogs.com/goOtter/p/9533441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!