css(properties )
优质
小牛编辑
135浏览
2023-12-01
描述 (Description)
css( properties )方法将键/值对象设置为所有匹配元素的样式属性。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.css( properties )
上面的语法可以写成如下 -
<i>selector</i>.css( {key1:val1, key2:val2....keyN:valN})
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
properties - 要设置为样式属性的键/值对。
例子 (Example)
以下是一个简单的例子,简单地显示了这种方法的用法 -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function () {
var color = $(this).css("background-color");
$("#result").html("That div is <span>" + color + "</span>.");
$("#result").css({'color': color, 'font-weight' : 'bold',
'background-color': 'gray'});
});
});
</script>
<style>
div { width:60px; height:60px; margin:5px; float:left; }
</style>
</head>
<body>
<p>Click on any square:</p>
<span id = "result"> </span>
<div style = "background-color:blue;"></div>
<div style = "background-color:rgb(15,99,30);"></div>
<div style = "background-color:#123456;"></div>
<div style = "background-color:#f11;"></div>
</body>
</html>