Previous words
Miscellaneous methods are actually tool class methods, but because they are not methods defined on the jQuery constructor, they cannot be called tool methods. This article will introduce in detail the miscellaneous methods in jQuery
Data operations
[data()]
This method is used to store any arbitrary Related data or returns the value stored in the data of the given name of the first element in the matched set of elements
data( key, value ) data( obj ) data( key ) data()
$("body").data("foo", 52); $("body").data("bar", { myType: "test", count: 40 }); $("body").data({ baz: [ 1, 2, 3 ] }); console.log($("body").data("foo"));//52console.log($("body").data());//{foo: 52, bar: Object, baz: Array(3)}
If using native javascript, equivalent to
document.body.foo = 52; console.log(document.body.foo);//52
【removeData()】
The removeData() method allows the removal of values bound with .data(). When called with the name argument, .removeData() will remove that unique value. When called without any arguments, all values will be removed. jQuery's internal .data() cache does not affect any HTML5 data-attributes in the document. These attributes can be removed using .removeAttr()
When using .removeData("name"), if Without this attribute name in the internal data cache, jQuery will try to find a data-attribute on the element. To avoid repeatedly querying the data- attribute, set the name to either null or undefined (e.g. .data("name", undefined)) instead of using .removeData()
removeData( [name] ) // [name]:String 要移除的存储数据名removeData( [list] ) // [list]:Array,String 一个数组或空间分隔的字符串命名要删除的数据块
$('body').data("test1", "VALUE-1") .data("test2", "VALUE-2"); console.log($('body').data());//{test1: "VALUE-1", test2: "VALUE-2"}$('body').removeData("test1"); console.log($('body').data());//{test1: "VALUE-1", test2: "VALUE-2"}
If you use native javascript, it is equivalent to
document.body.foo = 52; console.log(document.body.foo);//52delete document.body.foo; console.log(document.body.foo);
Queue operation
【queue()】
Display or operate the function queue that has been executed on the matching element
queue( [queueName ] ) //queueName : String 一个含有队列名的字符串。默认是 fx,标准的动画队列 queue( [queueName ], newQueue ) //newQueue:Array 一个替换当前列队内容的函数数组 queue( [queueName ], callback( next ) )//callback( next ):Function() 将要添加到队列中的新函数。当该函数被调用时,会从弹出队列中的下一个元素
var div = $("div"); div.show("slow"); div.animate({left:'+=200'},2000);var n = div.queue('fx'); console.log(n.length);//2
【clearQueue()】
From the queue Remove all unexecuted items
clearQueue( [queueName ] )
Collection operation
【each()】
Traverse a jQuery object , execute a function for each matching element
each( function(index, function(index, Element)) )
$( "li" ).each(function( index ) { console.log( index + ": "" + $(this).text() ); });
【add()】
add() method adds elements to the matching element gather. The argument to the add() method can accept almost any $(), including a jQuery selector expression, DOM element, or HTML fragment reference
add( selector ) add( elements ) add( html ) add( jQuery object ) add( selector, context )
$('li').add('p') $('li').add('<p>new paragraph</p>')
<script></script>
- list item 1
- list item 2
- list item 3
【get()】
Get the corresponding DOM element by retrieving the matching jQuery object
<span style="color: #000000;">get( [index ] ) index:Number 从0开始计数,用来确定获取哪个元素<br></span>
$( "li" ).get( 0 )
【index()】
Search the index value of the given element from the matching elements, counting from 0
index( [selector或element] )
If not If you pass any parameters to the .index() method, the return value is the position of the first element in the jQuery object relative to its sibling elements
If .index() is called on a set of elements, and the parameter is a For DOM elements or jQuery objects, the return value of .index() is the position of the passed in element relative to the original collection.
If the parameter is a selector, the return value of .index() is the position of the original element relative to the element matched by the selector. If no matching element is found, .index() returns -1
$('#bar').index(); listItem.index('li'); $('li').index($('li:gt(0)'));
【toArray()】
Returns a DOM containing all the jQuery objects in the collection Array of elements
toArray() 这个方法不接受任何参数
//[
Index filter
The index selector is part of the jQuery filter selector. At the same time, there are also index-related methods with similar functions, including eq(), first(), and last()
【eq()】
The eq() method matches elements Which element of the collection is at the specified index. The eq() method can accept an integer as a parameter, with 0 as the base. If the integer is a negative number, counting starts from the last element in the collection
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
end() 这个方法不接受任何参数The end() method is mainly used in jQuery's chained properties. When not using chaining, we usually just call the previous object on the variable name, so we don't need to manipulate the stack. When using end(), we can call all the required methods at once
$('ul.first').find('.foo').css('background-color', 'red') .end().find('.bar').css('background-color', 'green');
在上面的代码中,首先在链式用法中只在第一个列表中查找样式为 foo 的项目,并将其背景色变成红色。然后 end() 返回调用 find() 之前的状态。因此,第二次 find() 将只会查找
- 中的 '.bar',而不是继续在
- 中进行查找,结果是将匹配到的元素的背景色变成绿色
内容过滤
jQuery选择器中包括内容过滤选择器,而jQuery中也存在功能类似的内容过滤的方法,包括has()、filter()、is()、not()、map()、slice()
【has()】
has()方法用于筛选匹配元素集合中有相匹配的选择器或DOM元素的后代元素的父元素
<script></script>
- list item 1
- list item 2
- list item 2-a
- list item 2-b
- list item 3
【map()】
map()方法通过一个函数匹配当前集合中的每个元素
作为参数的函数有两个参数,第一个参照是匹配集合中的元素索引,第二个参数是当前索引的DOM元素对象
<script></script><script>$('#btn').click(function(){ $('input').map(function(index,dom){ dom.value += index; }); })</script>
【filter()】
filter()方法从匹配的元素集合中筛选出指定的元素,参数可以是一个选择器字符串、一个或多个DOM元素、jQuery对象或一个函数
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
filter()方法中作为参数的函数有两个参数,第一个参照是匹配集合中的元素索引,第二个参数是当前索引的DOM元素对象。如果函数返回值为true,则该元素保留;否则,该元素在匹配集合中被去除
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
【not()】
not()方法与filter()方法正好相反,它从匹配的元素集合中移除指定的元素,参数可以是一个选择器字符串、一个或多个DOM元素、jQuery对象或一个函数
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
not()方法中作为参数的函数有两个参数,第一个参照是匹配集合中的元素索引,第二个参数是当前索引的DOM元素对象。如果函数返回值为true,则该元素被去除;否则,该元素在匹配集合中保留
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
【is()】
is()方法用于判断当前元素是否与参数相匹配,如果匹配,则返回true;否则,返回false。参数可以是一个选择器,DOM元素,jQuery对象或函数
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
is()方法中作为参数的函数有两个参数,第一个参照是匹配集合中的元素索引,第二个参数是当前索引的DOM元素对象。如果函数返回true,is()方法也返回true,如果函数返回false,is()方法也返回false
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
【slice()】
slice()方法根据指定的下标范围,过滤匹配的元素集合,并生成一个新的jQuery对象
slice(start[,end])方法接受两个参数:start和end
start是一个整数,从0开始计数的下标。代表将要被选择的元素的起始下标。如果指定的下标是一个负数,那么代表从末尾开始计数
end是一个整数,从0开始计数的下标。代表将要被选择的元素的结束下标。如果指定的下标是一个负数,那么代表从末尾开始计数。如果忽略此参数,则选择的范围是从start开始,一直到最后
<script></script>
- list item 1
- list item 2
- list item 3
- list item 4
- list item 5
The above is the detailed content of jQuery miscellaneous methods. For more information, please follow other related articles on the PHP Chinese website!

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Chinese version
Chinese version, very easy to use

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools
