jQuery - 取得並設定 CSS 類
jQuery 運算 CSS
jQuery 擁有若干進行 CSS 運算的方法。我們將學習下面這些:
addClass() - 將一個或多個類別新增一個類別
#removeClass() - 從被選元素中刪除一個或多個類別
toggleClass() - 被選取元素進行新增/刪除類別的切換操作
css() - 設定或傳回樣式屬性
樣式表
.important
{
#font-weight:bold;
addClass() 方法
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").addClass("blue"); $("div").addClass("important"); }); }); </script> <style type="text/css"> .important { font-weight:bold; font-size:xx-large; } .blue { color:blue; } </style> </head> <body> <h1>标题 1</h1> <h2>标题 2</h2> <p>段落1</p> <p>段落2</p> <div>文本</div> <br> <button>为元素添加 class</button> </body> </html>
也可以在addClass() 方法中規定多個類:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").addClass("important blue"); }); }); </script> <style type="text/css"> .important { font-weight:bold; font-size:xx-large; } .blue { color:blue; } </style> </head> <body> <div id="div1">文本。</div> <div id="div2">文本。</div> <br> <button>为第一个元素添加类</button> </body> </html>
removeClass() 方法
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").removeClass("blue"); }); }); </script> <style type="text/css"> .important { font-weight:bold; font-size:xx-large; } .blue { color:blue; } </style> </head> <body> <h1 class="blue">标题 1</h1> <h2 class="blue">标题 2</h2> <p class="blue">段落1</p> <p>段落2</p> <br> <button>从元素中移除 class</button> </body> </html>
toggleClass() 方法
#該方法對被選元素進行新增/刪除類別的切換操作:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1,h2,p").toggleClass("blue"); }); }); </script> <style type="text/css"> .blue { color:blue; } </style> </head> <body> <h1 class="blue">标题 1</h1> <h2 class="blue">标题 2</h2> <p class="blue">段落1</p> <p>段落2</p> <br> <button>切换 class</button> </body> </html>