jQuery使用CSS()方法给指定元素同时设置多个样式
本文实例讲述了jQuery使用CSS()方法给指定元素同时设置多个样式的方法。分享给大家供大家参考。具体如下:
<!DOCTYPEhtml>
<html>
<head>
<scriptsrc="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").css({"background-color":"blue","font-size":"14px"});
});
});
</script>
</head>
<body>
<h2>Thisisaheading</h2>
<pstyle="background-color:#ff0000">Thisisaparagraph.</p>
<pstyle="background-color:#00ff00">Thisisaparagraph.</p>
<pstyle="background-color:#0000ff">Thisisaparagraph.</p>
<p>Thisisaparagraph.</p>
<button>Setmultiplestylesforp</button>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。