1. jQuery operation style
2. jQuery operation attributes
3. jQuery animation simple operation
4. jQuery operation dom node addition and deletion operations
1. jq operation style
1.css operation:
Function: Setting Or modify the style and operate the style attribute
a. Set a single style, css (name/attribute name, value/attribute value);
$('#box').css(‘background’,'#000')
b. Set multiple styles, the parameter is the object css (obj);
$('#box').css({'background':'gray', 'width':'400px', 'height':'200px' })
Get style:
.css(name)
Features, jQ’s css methods are all inline styles;
jqhidden When iterating through the formula, when a certain attribute of a collection is obtained, JQ will automatically print the 0th attribute.
When setting the operation, if there are multiple elements, then set the same value to all elements
box.eq(0).css('width',190); box.eq(1).css('width',110);
..........
2.class operation
Function: processing style class
a.添加addClass(name);参数类名不用带点,并且不会覆盖之前的作用; $("box").addClass("one"); b.移除removeClass("name"); $("box").removeClass("one"); c.判断hasClass是否有具体的类,返回值为布尔值 $("box").hasClass("one");//false d.切换样式类toggleClass,需要切换的样式类名,如果有,移除该样式,如果没有,添加该样式。 $("box").toggleClass("one");切换样式类
2. jq operation attribute
1.attr operation
a.设置单个属性,attr(name,value); $(“img”).attr(“title”,”哎哟,不错哦”); b.设置多个属性(attr(obj)); $("img").attr({ title:"哎呦,不错哦“, alt:"你很棒棒哟”, style:"opacity:.5" }); c.获取属性attr(name) $(“img”).attr("title");
1. When obtaining attributes, only the attributes corresponding to the first element will be obtained, the same as the css method.
2. When getting an attribute, if the attribute does not exist, undefined will be returned.
d. Remove the attribute removeAttr(name);
Parameters: need to be removed If the attribute name is passed empty, no operation will be performed. Note that not all attributes are removed. Distinguish removeClass.
$("img").removeAttr("title");
2.prop operation Boolean attribute
For boolean form attributes such as checked, selected, and disabled, the attr method cannot be used. Only prop methods can be used.
Set attributes
$(“:checked”).prop(“checked”,true);
Add selected attributes to all selections, parameters (attribute name, true/false)
Get attributes
$(“:checked”).prop(“checked”);//返回true或者false;
三、jQuery basic animation
jquery provides three sets of basic animations. These animations are standard and regular effects. jquery also provides the function of custom animation.
1. Show and hide
show([speed],[callback]) and hide();
show() If no parameters are passed, display and hide directly
Parameters: speed: time (millisecond value), fixed string 'fast') = 200 nomal = 400 slow=600;
callback: callback function executed after the animation ends
hide()同show()方法一致
show/hide修改的是元素的width、height、opacity。
2.滑入与滑出
slideUp()与slideDown()
*如果不传参数,默认为nomal!(与show和hide区分 )
参数:时间,固定字符串
callback:执行动画结束后执行的回调函数
滑入滑出切换slideToggle(speed,callback)
$(selector).slideToggle(speed,callback);
//如果是隐藏状态,那么执行slideDown操作,如果是显示状态,那么执行slideUp操作。
3.淡入与淡出
fadeIn()与fadeOut()
用法与show好fadeOut一致
淡入淡出切换:
fadeToggle(speed,callback);
//如果当前元素处于隐藏状态,那么执行fadeIn操作,如果处于显示状态,那么执行fadeOut操作。
fade系列方法:修改的是元素的opacity
4.基本动画小结
1. jQuery给我们提供了三组动画,show/hide、slideUp/slideDown、fadeIn/fadeOut
2. 动画切换方法:slideToggle、fadeToggle,toggle()。
3. show/slideDown/fadeIn三个是显示效果、hide/slideUp/fadeOut三个是隐藏效果。
4. show/hide修改的是元素的height,width,opacity。slide系列方法修改的是元素的height。fade系列方法修改的是元素的opacity。这三种方法修改的这些值,都是带数字的,因为带了数字才能做渐变。
5.自定义动画animate
animate:自定义动画
$(selector).animate({params},[speed],[callback]);
// {params}:要执行动画的CSS属性,带数字可以是对象(必写)
// speed:执行动画时长
时间和速度:毫秒数,字符串’swing‘两边慢,中间快/’linner‘匀速
// callback:动画执行完后立即执行的回调函数
例:
设置数值型的属性做动画
box.animate({
left:800;
width:800;
height:800 逐渐变大
transform:'rotate(360deg)'
},1000,'swing',function)
6.动画队列问题
在同一个元素上执行多个动画,那么对于这个动画来说,后面的动画会被放到动画队列中,等前面的动画执行完成了才会执行。
7.停止动画
stop()函数暂停当前执行动画
stop(clearQueue,jumpToEnd)
第一个参数:是否清楚队列,第二个参数:是否跳转最终效果,最后一帧
四、jQuery操作dom节点增删操作
1.创建元素
$(htmlStr)//html格式的字符串
$(“<span>这是一个span元素</span>”);
2.添加元素append/prepend
append方法:添加到当前的最后面。
参数:字符串(标签)或者jq对象
字符串:$(“p”).append(“这是一个span元素”);
JQ对象:var $span = $(“<span>这是一个span元素</span>”);
$(“p”).append($span);
prepend:追加到当前元素的最前面。
*如果添加的是已经存在的元素,那么会把之前的元素给干掉。(类似于剪切的功能)。
3.清空元素empty
empty:清空指定节点的所有元素,自身保留(清理门户)
1)$(“p”).empty();//清空p的所有内容(推荐使用,会清除子元素上绑定的内容,源码) 2)$(“p”).html(“”);//使用html方法来清空元素,不推荐使用,会造成内存泄漏,绑定的事件不会被清除。
4.删除元素remove
remove:相比于empty,自身也删除(自尽)
$(“p”).remove();
5.克隆元素clone
$(selector).clone();
复制$(selector)所匹配到的元素(深度复制)和原来的元素没有任何关系了。即修改新元素,不会影响到原来的元素。
The above is the detailed content of How to manipulate DOM with jQuery. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

增加元素的方法: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();”,只删除子元素,不删除内容。

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

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


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

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
