addclass,
Posted 万里冰封
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了addclass,相关的知识,希望对你有一定的参考价值。
定义和用法
addClass() 方法向被选元素添加一个或多个类。
该方法不会移除已存在的 class 属性,仅仅添加一个或多个 class 属性。
提示:如需添加多个类,请使用空格分隔类名。
removeClass() 方法从被选元素移除一个或多个类。
注释:如果没有规定参数,则该方法将从被选元素中删除所有类。
1 <html> 2 <head> 3 <script type="text/javascript" src="/jquery/jquery.js"></script> 4 <script type="text/javascript"> 5 $(document).ready(function(){ 6 $("button").click(function(){ 7 $("p:first").addClass("intro"); 8 }); 9 }); 10 </script> 11 <style type="text/css"> 12 .intro 13 { 14 font-size:120%; 15 color:red; 16 } 17 </style> 18 </head> 19 20 <body> 21 <h1>This is a heading</h1> 22 <p>This is a paragraph.</p> 23 <p>This is another paragraph.</p> 24 <button>向第一个 p 元素添加一个类</button> 25 </body> 26 </html>
以上是关于addclass,的主要内容,如果未能解决你的问题,请参考以下文章