jQuery中removeClass()方法用法实例(2)


<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta content="https://www.jb51.net/" />
<title>removeClass()函数-脚本之家</title>
<style type="text/css">
.font{
  font-size:18px;
  color:yellow
}
.bg{background:#336;}
</style>
<script type="text/javascript" src="https://www.jb51.net/mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("div").removeClass(function(){
      return "font bg"
    });
  });
})
</script>
</head>
<body>
<div>脚本之家欢迎您</div>
<button>点击查看效果</button>
</body>
</html>

用函数作为参数,函数返回两个要删除的CSS类名,类名之间用空格分隔。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgxgpw.html