jQuery-CSS類別和方法LOGIN

jQuery-CSS類別和方法

jQuery-CSS類別與方法

jQuery - 取得並設定CSS 類別

##jQuery 操作CSS

jQuery擁有若干進行CSS 操作的方法。我們將學習下面這些:

addClass() - 將一個或多個類別新增一個類別

#removeClass() - 從被選元素中刪除一個或多個類別

toggleClass() - 對被選元素進行新增/刪除類別的切換操作

css() - 設定或傳回樣式屬性

實例樣式表

下面的樣式表將用於本頁的所有範例:

.important{
font-weight:bold;
font-size:xx-large;
}.
blue{
color:blue;
}

jQuery addClass() 方法

下面的範例展示如何在不同的元素中新增class 屬性。當然,在新增類別時,您也可以選取多個元素:

<!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>静夜思</h1>
<p>床前明月光</p>
<p>疑是地上霜</p>
<p>这是另外一个段落。</p>
<div>这是一些重要的文本!</div>
<br>
<button>为元素添加 class</button>
</body>
</html>

您也可以在addClass() 方法中規定多個類別:

<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>为第一个 div 元素添加类</button>
</body>
</html>

jQuery removeClass()方法

下面的範例示範如何在不同的元素中刪除指定的class 屬性:

<!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>静夜思</h1>
<p>床前明月光</p>
<p>疑是地上霜</p>
<p>这是另外一个段落。</p>
<div>这是一些重要的文本!</div>
<br>
<button>从元素中移除 class</button>
</body>
</html>

與addclass作用剛好相反。

jQuery 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">这是一个段落。</p>
<p>这是另外一个段落。</p>
<br>
<button>切换 class</button>
</body>
</html>

jQuery css() 方法

css() 方法設定或傳回被選元素的一個或多個樣式屬性。

傳回CSS 屬性

如需傳回指定的CSS 屬性的值,請使用下列語法:

css("propertyname");

設定CSS 屬性

如需設定指定的CSS 屬性,請使用下列語法:

css("propertyname","value");

設定多個CSS 屬性

如需設定多個CSS 屬性,請使用下列語法:

css({"propertyname":" value","propertyname":"value",...});

<!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(){
    $("p").css({"background-color":"yellow","font-size":"200%"});
  });
});
</script>
</head>
<body>
<h2>这是一个标题</h2>
<p style="background-color:#ff0000">这是一个例子</p>
<p style="background-color:#00ff00">这是一个例子</p>
<p style="background-color:#0000ff">这是一个例子</p>
<p>这是一个例子</p>
<button>为 p 元素设置多个样式</button>
</body>
</html>


下一節

<!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(){ $("p").css("background-color","yellow"); }); }); </script> </head> <body> <h2>这是一个标题</h2> <p style="background-color:#ff0000">我们是例子</p> <p style="background-color:#00ff00">我们是例子</p> <p style="background-color:#0000ff">我们是例子</p> <p>我们是例子</p> <button>设置 p 元素的 background-color </button> </body> </html>
章節課件