根据class获取元素 jQuery给多个不同元素添加class样式的方法?
jQuery给多个不同元素添加class样式的方法?
jQuery可以通过addClass()给多个不同同html素同时添加同同class
<!DOCTYPE html>
<html>
<head>
<script src=“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>
根据class获取元素 js给元素添加class class后面加什么
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。