jquery给多个不同元素添加class样式的方法?
jquery可以添加相同的类
<!doctypehtml>
<html>
<head>
<script通过addclass()方法src=“js/jquery.min.js文件“>
</script>
<script>
$(文档)。就绪(function(){
$(”button“)。单击(function(){
$(”h1,h2,p“)。addclass(”blue“)
(”div“)。addclass(”important“)
})
</script>
<styletype=”text/css“>
。重要
{
font-重量:粗体
字体-尺寸:xxl
}
蓝色
{颜色:蓝色
}
</style>
</head>
<body>
<h1>标题1</h1>
<h2>
<p>这是一段。</p>
<p>这是另一段。</p>
<div>这是一些重要的文本!</div>
<br>
<button>将类添加到元素</button>
</body>
</html>
jquery中css()和addclass修改样式的区别?
toggleclass方法可以添加或删除类。例如:$(“#test”)。toggleclass(“classname”)。toggleclass(classname)classnametype:字符串一个或多个(用空格分隔)样式的类名,用于打开匹配元素集中的每个元素。
原文标题:jq addclass jQuery给多个不同元素添加class样式的方法?,如若转载,请注明出处:https://www.saibowen.com/tougao/19625.html
免责声明:此资讯系转载自合作媒体或互联网其它网站,「赛伯温」登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,文章内容仅供参考。