jquery toggleclass方法
给元素更改样式,一般使用 addclass() 和removeclass()
对 addclass的介绍:
adds the specified class(es) to each element in the set of matched elements.
实例代码
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>document</title> <script src="./webcontent/resources/common/js/jquery.js"></script> <style> .aaa { color: rebeccapurple; font-size: 4em; } .bbb { width: 20%; height: 20%; background: #f1f1a1; } </style> </head> <body> <div id="test1" class="div"> <span class="aaa bbb">hellow world </span> </div> <div class="div"> <span class="aaa bbb">hellow world</span> </div> <div> <input type="button" value="点击我"> </div> </body> <script> $('input[type=button]').on('click', e => { console.log(e); console.log(e.target); console.log($(e.target)); let ee = document.getelementbyid('test1'); console.log(ee); $('.bbb',ee).toggleclass('aaa'); });
</script> </html>
addclass()
给匹配的元素集合添加 指定的class样式(注意 括号中的es 可以移除多个样式)
$('.div span').addclass('aaa') ;添加指定样式
$('.div span').addclass('aaa bbb') ;添加多个样式
removeclass()
对 removeclass的介绍:
remove a single class, multiple classes, or all classes from each element in the set of matched elements.
给匹配的元素集合移除 一个 或者 多个 或者 所有的 class样式
$('.div span').removeclass() 方法移除所有的样式
$('.div span').removeclass('aaa') 移除指定的class 为 aaa的样式
$('.div span').removeclass('aaa bbb') 移除指定的多个样式;
toggleclass()
toggle 是切换的意思,官方解释
add or remove one or more classes from each element in the set of matched elements, depending on either the class’s presence or the value of the state argument.
如果 有这个class 则 移除此class,如果没有这个class,则添加上
$('.div span').toggleclass('aaa bbb');
总结
1.toggleclass 侧重点在样式指定样式的切换,一般配合点击、 鼠标悬浮 、鼠标划过事件
2.removeclass 和 addclass 重点在样式的移除
3.针对频繁切换,使用toggle,代码会简介流程很多
从调试,到验证,再些这个随笔,花了二个小时.再想想此文的技术含量,有点汗颜.继续努力.争取能写出高端,有含量的干货
上一篇: Ajax跨域问题及解决方案
下一篇: 给我解释解释,这马桶上怎么有口红
推荐阅读
-
pr2019外观颜色怎么设置? premiere2019外观颜色的设置方法
-
Sql Server安装出错,安装程序配置服务器失败的解决方法小结
-
宝宝出虚汗怎么办?宝宝出虚汗的处理方法
-
Linux whatis命令的使用方法
-
sql2005 数据库转为sql2000数据库的方法(数据导出导入)
-
Notepad++怎么更改快捷键?Notepad++添加修改快捷键的方法介绍
-
sublime text 3快捷键失效怎么办?解决sublime text 3快捷键失效的设置方法
-
红薯保鲜家庭方法
-
permiere怎么使用闪光灯功能? pr闪光灯的使用方法
-
在sqlserver2005中安装sql server 2000的示例数据库northwind的方法