您好,登錄后才能下訂單哦!
這篇“jquery如何改變style樣式”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“jquery如何改變style樣式”文章吧。
jquery改變style樣式的方法:1、利用css()給指定元素設(shè)置新style樣式即可,語法“$(selector).css({"屬性名1":"屬性值1","屬性名2":"屬性值2",...})”;2、使用attr()設(shè)置指定元素的style屬性值即可,語法“$(selector).attr("style","屬性名1:屬性值1;屬性名2:屬性值3;...")”。
jquery改變style樣式有兩種方法:
通過css()方法來修改
通過attr()方法來修改
方法1:使用css()方法
css() 方法可以設(shè)置匹配的元素的一個(gè)或多個(gè)樣式屬性。
直接利用css() 方法設(shè)置新style樣式即可
語法:
$(selector).css({"屬性名1":"屬性值1","屬性名2":"屬性值2",...})
示例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="js/jquery-3.6.3.min.js"></script>
<script>
$(document).ready(function() {
$("button").on("click", function() {
$("div").css({"color":"red","background-color":"papayawhip","font-size":"25px"});
});
});
</script>
<style>
.tr1 {
color: green;
}
.tr2 {
color: red;
background-color: blanchedalmond;
}
</style>
</head>
<body class="ancestors">
<div style="color: yellow;background-color:powderblue;">歡迎來到億速云!</div><br>
<button>改變div元素的style樣式</button>
</body>
</html>
方法2:使用attr()方法
attr() 方法設(shè)置或返回被選元素的屬性值。
只需要使用attr() 方法設(shè)置元素的style屬性值即可。
語法:
$(selector).attr("style","屬性名1:屬性值1;屬性名2:屬性值3;...")
示例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="js/jquery-3.6.3.min.js"></script>
<script>
$(document).ready(function() {
$("button").on("click", function() {
$("div").attr("style", "color:pink;background-color:peru;font-size: 18px;");
});
});
</script>
<style>
.tr1 {
color: green;
}
.tr2 {
color: red;
background-color: blanchedalmond;
}
</style>
</head>
<body class="ancestors">
<div style="color: red;background-color:papayawhip;">歡迎來到億速云!</div><br>
<button>改變div元素的style樣式</button>
</body>
</html>
以上就是關(guān)于“jquery如何改變style樣式”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。