码迷,mamicode.com
首页 > 其他好文 > 详细

addclass,

时间:2017-10-08 12:11:08      阅读:149      评论:0      收藏:0      [点我收藏+]

标签: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>

 

addclass,

标签:class   定义   fun   移除   size   strong   font   tip   blog   

原文地址:http://www.cnblogs.com/wanlibingfeng/p/7636918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!