jQuery给多个不同元素添加class样式的方法教程
程序员文章站
2022-04-11 18:56:13
本文实例讲述了jquery给多个不同元素添加class样式的方法。分享给大家供大家参考。具体分析如下:
jquery可以通过addclass()方法给多个不同的html元素同时添...
本文实例讲述了jquery给多个不同元素添加class样式的方法。分享给大家供大家参考。具体分析如下:
jquery可以通过addclass()方法给多个不同的html元素同时添加相同的class
<!doctype html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").addclass("blue"); $("p").addclass("important"); }); }); </script> <style type="text/css"> .important { font-weight:bold; font-size:xx-large; } .blue { color:blue; } </style> </head> <body> <h1>heading 1</h1> <h2>heading 2</h2> <p>this is a paragraph.</p> <p>this is another paragraph.</p> <p>this is some important text!</p> <br> <button>add classes to elements</button> </body> </html>
上一篇: PHP一些常用的正则表达式字符的一些转换
下一篇: 搞笑动态QQ表情,笑掉你大牙。
推荐阅读
-
jQuery使用addClass()方法给元素添加多个class样式
-
jQuery使用toggleClass方法动态添加删除Class样式的方法教程
-
jQuery给多个不同元素添加class样式的方法教程
-
jQuery给元素添加样式的方法详解_jquery
-
jQuery使用addClass()方法给元素添加多个class样式_jquery
-
jQuery给多个不同元素添加class样式的方法_jquery
-
jQuery给元素添加样式的方法详解_jquery
-
jQuery使用addClass()方法给元素添加多个class样式
-
jQuery给多个不同元素添加class样式的方法教程
-
jQuery使用addClass()方法给元素添加多个class样式_jquery