css代码
<style>
.bg1{
width: 200px;
height: 200px;
background-color: #00FFFF;
}
.bg2{
width: 200px;
height: 200px;
background-color: blueviolet;
}
</style>
js代码
<body>
<div class="bg1">
</div>
<script type="text/javascript">
$(function () {
$("div").on("click",function () {
$(this).toggleClass("bg2");
})
})
</script>
</body>
版权声明:本文为mqf15565844264原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。