标签:class 定义 fun 移除 size strong font tip blog
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>
标签:class 定义 fun 移除 size strong font tip blog
原文地址:http://www.cnblogs.com/wanlibingfeng/p/7636918.html