使用jquery為指定元素新增樣式類

antzone發表於2017-04-02

本章節演示一下如何利用jquery為制定的元素新增樣式類。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.p{
  width:300px;
  height:100px;
  text-align:center;
  line-height:100px;
  background:#ccc;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
$(document).ready(function(){
  $("#bt").click(function(){
    $("p").addClass("p");
  });
});
</script>
</head>
<body>
<p>螞蟻部落歡迎您</p>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

相關文章