jquery给多个不同元素添加class样式的方法?
jquery可以通过addclass()给多个不同同html素同时添加同同class
<!doctypehtml>
<html>
<head>
<scriptsrc=“js/jquery.min.js文件“>
</script>
<script>
$(文档)。就绪(function(){
$(”button“)。单击(function(){
$(”h1,h2,p“)。addclass(”blue“)
(”div“)。addclass(”important“)
})
</script>
<style”type=“text/css”>
重要
{
字体-重量:粗体
字体-尺寸:xxl
}
蓝色
{颜色:蓝色
}
</style>
</head>
<body>
<h1>标题1</h1>
<h2>
<p>这是一段。</p>
<p>这是另一段段落。</p>
<div>这是一些重要的文本!</div>
<br>
<button>将类添加到元素</button>
</body>
</html>
原文标题:jquery获取class jQuery给多个不同元素添加class样式的方法?,如若转载,请注明出处:https://www.saibowen.com/tougao/23076.html
免责声明:此资讯系转载自合作媒体或互联网其它网站,「赛伯温」登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,文章内容仅供参考。