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

jQuery使用removeClass方法删除元素指定Class的方法教程

程序员文章站 2022-07-03 14:56:55
本文实例讲述了jquery使用removeclass方法删除元素指定class的方法。分享给大家供大家参考。具体分析如下: &l...

本文实例讲述了jquery使用removeclass方法删除元素指定class的方法。分享给大家供大家参考。具体分析如下:

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