Home>Article>Web Front-end> 7 ways to use jQuery $() function (summary)

7 ways to use jQuery $() function (summary)

青灯夜游
青灯夜游 forward
2020-12-30 09:11:03 2543browse

7 ways to use jQuery $() function (summary)

Recommended tutorial:jQuery tutorial

jQuery object is anarray-like object, containing consecutive Integrated properties and a series of jQuery methods. It wraps all operations in a jQuery() function, forming a unified (and only) operation entrance.One of the functions we use very frequently is $() or jQuery(). When we call it, different effects will be achieved depending on the parameters passed in.

Next, I will talk about these 7 usages one by one. You are welcome to correct any inaccuracies among them.

1 jQuery(selector,context)

Briefly: receive a css selector expression (selector) and optional selector context (context), returns a jQuery object containing the matching DOM element.

By default, the search for matching elements starts from the

root element ducument object, which means that the search scope is the entire document tree. But if context context is given, search

html

body span body span body span 
wrap span wrap span wrap span

js

$('span').css('background-color','red');//所有的span都会变红 $('span','.wrap').css('background-color','red');//只有.wrap中的span会变红

## in the specified context. #2 jQuery(html,ownerDocument),jQuery(html,props)

Create DOM elements using the provided html code

对于jQuery(html,ownerDocument),参数html可以是单标签或者是多层标签之间的嵌套。第二个参数用于创建新DOM元素的文档对象,如果不传入则默认为当前的文档对象。

//单标签 两种方式都可以往body中插入div /* * 1 $('
').appendTo('body'); * 2 $('
').appendTo('body'); */ // 多标签嵌套 $('
dfsg
').appendTo('body');

另外:对于单标签,jQuery(html,props),props是一个包含属性和事件的普通的对象,用法如下。(该用法有待考证,请知道这一用法的童鞋告知一下,感激不尽)

$('
我是div
',{ title:'我是新的div', click:function(){ $(this).css('color','red'); console.log(this); } }).appendTo('body');

3 jQuery(element or elementsArray)

如果传入一个DOM元素或者是DOM元素的数组,则把DOM元素封装到jQuery对象中并返回。

html

  • 1
  • 2
  • 3
  • 4
  • 5

js

// 传入DOM元素 $('li').each(function(index,ele){ $(ele).on('click',function(){ $(this).css('background','red');//这里的DOM元素就是this }) }) //传入DOM数组 var aLi=document.getElementsByTagName('li'); aLi=[].slice.call(aLi);//集合转数组 var $aLi=$(aLi); $aLi.html('我是jQuery对象');//所有的li的内容都变成'我是jQuery对象'

4 jQuery(object)

如果传入的是一个object对象,则把该对象封装到jQuery对象中并返回。

var obj={name:'谦龙'}; var $obj=$(obj);//封装成jQuery对象 //绑定自定义事件 $obj.on('say',function(){ console.log(this.name)//输出谦龙 }); $obj.trigger('say');

5 jQuery(callback)

当传进去的参数是函数的时候,则在document对象上绑定一个ready事件监听函数,当DOM结构加载完成的时候执行

$(function(){ }) //以上代码和下面的效果是一样的 $(document).ready(function(){ ...//代码 })

6 jQuery(jQuery object)

当传进去的参数是一个jQuery对象的时候,则创建该jQuery对象的一个副本并返回。副本与传入的jQuery对象引用完全相同的元素

var aLi=$('li'); var copyLi=$(aLi);//创建一个aLi的副本 console.log(aLi); console.log(copyLi); console.log(copyLi===aLi);

7 ways to use jQuery $() function (summary)

7 jQuery()

如果不传入任何的参数,则返回一个空的jQuery对象,属性length为0

注意这个功能可以用来复用jQuery对象,例如可以创建一个空的jQuery对象,然后在需要的时候先手动修改其中的元素,然后在调用jQuery方法。从而避免重复创建jQuery对象。

更多编程相关知识,请访问:编程教学!!

The above is the detailed content of 7 ways to use jQuery $() function (summary). For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete