溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用jQuery怎么獲取CSS樣式

發(fā)布時間:2021-02-18 15:59:30 來源:億速云 閱讀:225 作者:Leah 欄目:web開發(fā)

利用jQuery怎么獲取CSS樣式?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

具體如下:

  • addClass():向被選元素添加一個或多個類

  • removeClass():從被選元素刪除一個或多個類

  • toggleClass():對被選元素進行添加/刪除類的切換操作

  • css():設(shè)置或返回被選元素的一個或多個樣式屬性

樣式表實例:

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

addClass()

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("h2,h3,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>
<h2>she is gone</h2>
<h3>no say anymore</h3>
<p>but i miss you</p>
<div>can you come back</div>
</br>
<button>addClass</button>
</body>
</html>

運行效果:

利用jQuery怎么獲取CSS樣式

可以在addClass()方法中規(guī)定多個類:

$("button").click(function(){
$("#div1").addClass("important blue");
});

removeClass()

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("h2,h3,p").removeClass("blue");
});
});
</script>
<style type="text/css">
.important{
font-weight:bold;
font-size:xx-large;
}
.blue{
color:blue;
}
</style>
</head>
<body>
<h2 class="blue">is she ?</h2>
<h3 class="blue">i do not know</h3>
<p class="blue">queit</p>
<br>
<button>removeClass</button>
</body>
</html>

運行結(jié)果:

利用jQuery怎么獲取CSS樣式

toggleClass()

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("h2,h3,p").toggleClass("blue");
});
});
</script>
<style type="text/css">
.blue{
color:blue;
}
</style>
</head>
<body>
<h2>who are you</h2>
<h3> i five thank you</h3>
<p>goodbye</p>
<button>toggleClass</button>
</body>
</html>

運行結(jié)果:

利用jQuery怎么獲取CSS樣式

css()

返回CSS屬性

css("propertyname")

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
alert("Background color = " + $("#p2").css("background-color"));
});
});
</script>
</head>
<body>
<h3>我心在南朝</h3>
<p id=p1 >田野上</p>
<p id=p2 >紅花盛開</p>
<p id=p3 >玲瓏剔透</p>
<button>css()</button>
</body>
</html>

運行結(jié)果:

利用jQuery怎么獲取CSS樣式

設(shè)置CSS屬性

css("propertyname","value");

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").css("background-color","yellow");
});
});
</script>
</head>
<body>
<h3>我心在南朝</h3>
<p >田野上</p>
<p >紅彤彤的花兒</p>
<p >玲瓏剔透</p>
<p>我心在南朝</p>
<button>設(shè)置CSS屬性</button>
</body>
</html>

運行結(jié)果:

利用jQuery怎么獲取CSS樣式

設(shè)置多個CSS屬性

$("p").css({"background-color":"yellow","font-size":"200%"});

jQuery——尺寸

  • width():設(shè)置或返回元素的寬度(不包括內(nèi)邊距、邊框或外邊距)

  • height():設(shè)置或返回元素的高度(不包括內(nèi)邊距、邊框或外邊距)

  • innerWidth()方法返回元素的寬度(包括內(nèi)邊距)

  • innerHeight()方法返回元素的高度(包括內(nèi)邊距)

  • outerWidth()方法返回元素的寬度(包括內(nèi)邊距和邊框)

  • outerHeight()方法返回元素的高度(包括內(nèi)邊距和邊框)

  • outerWidth(true)方法返回元素的寬度(包括內(nèi)邊距、邊框、外邊距)

  • outerHeight(true)方法返回元素的高度(包括內(nèi)邊距、邊框、外邊距)

<!DOCTYPE html>
<html>
<head>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
var txt="";
txt+="Width of div: " + $("#div1").width() + "</br>";
txt+="Height of div: " + $("#div1").height() + "</br>";
txt+="innerWidth of div: " + $("#div1").innerWidth() + "</br>";
txt+="innerHeight of div: " + $("#div1").innerHeight() + "</br>"
txt+="Outer width: " + $("#div1").outerWidth() + "</br>"
txt+="Outter height: " + $("#div1").outerHeight() + "</br>";
txt+="Outer width: " + $("#div1").outerWidth(true) + "</br>"
txt+="Outter height: " + $("#div1").outerHeight(true);
$("#div1").html(txt);
});
});
</script>
</head>
<body>
<div id="div1" ></div>
<br>
<button>顯示div尺寸</button>
</body>
</html>

關(guān)于利用jQuery怎么獲取CSS樣式問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI