我是靠谱客的博主 合适学姐,这篇文章主要介绍jquery怎么删除样式,现在分享给大家,希望可以做个参考。

本教程操作环境:windows7系统、jquery1.10.2版本、Dell G3电脑。

jquery删除样式的方法

方法1:利用removeAttr()方法

removeAttr() 方法可从被选元素中移除属性。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function() { $("button").click(function() { $("h1").removeAttr("id"); $("p").removeAttr("style"); $("p").removeAttr("class"); }); }); </script> <style> #h1{ color: red; } .box{ color: #FFC0CB; } </style> </head> <body> <h1 id="h1">这是一个标题</h1> <p style="font-size:120%;color:red">这是一个段落。</p> <p class="box">这是另一个段落。</p> <button>删除样式</button> </body> </html>
登录后复制

效果图:

1.gif

方法2:利用removeClass()方法

removeClass() 方法从被选元素移除一个或多个类。

注释:如果没有规定参数,则该方法将从被选元素中删除所有类。

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function() { $("button").click(function() { $("p").removeClass(); $("div").removeClass("intro"); }); }); </script> <style> .box1 { color: #FFC0CB; } .box2 { color: #FFC0CB; } .box3 { color: #FFC0CB; } .intro { font-size: 120%; color: red; } </style> </head> <body> <p class="box1">这是一个段落。</p> <p class="box2">这是一个段落。</p> <p class="box3">这是一个段落。</p> <div class="intro">这是另一个段落。</div><br> <button>删除样式</button> </body> </html>
登录后复制

2.gif

相关视频教程推荐:jQuery教程(视频)

以上就是jquery怎么删除样式的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是合适学姐最近收集整理的关于jquery怎么删除样式的全部内容,更多相关jquery怎么删除样式内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(96)

评论列表共有 0 条评论

立即
投稿
返回
顶部