欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery给多个不同元素添加class样式的方法教程

程序员文章站 2022-04-11 18:56:13
本文实例讲述了jquery给多个不同元素添加class样式的方法。分享给大家供大家参考。具体分析如下: jquery可以通过addclass()方法给多个不同的html元素同时添...

本文实例讲述了jquery给多个不同元素添加class样式的方法。分享给大家供大家参考。具体分析如下:

jquery可以通过addclass()方法给多个不同的html元素同时添加相同的class

<!doctype html>
<html>
<head>
<script src="js/jquery.min.js">
</script>
<script>
$(document).ready(function(){
 $("button").click(function(){
  $("h1,h2,p").addclass("blue");
  $("p").addclass("important");
 });
});
</script>
<style type="text/css">
.important
{
font-weight:bold;
font-size:xx-large;
}
.blue
{
color:blue;
}
</style>
</head>
<body>
<h1>heading 1</h1>
<h2>heading 2</h2>
<p>this is a paragraph.</p>
<p>this is another paragraph.</p>
<p>this is some important text!</p>
<br>
<button>add classes to elements</button>
</body>
</html>