您好,欢迎来到税程财经网。
搜索
您的当前位置:首页JS怎么实现开关效果

JS怎么实现开关效果

来源:税程财经网


这次给大家带来JS怎么实现开关效果,JS实现开关效果的注意事项有哪些,下面就是实战案例,一起来看一下。

使用JavaScript实现开关效果也是很多人会遇到的操作,这次文章就给大家简单的介绍下方法,感兴趣的一起来看看。

<!DOCTYPE html>
<html>
<head>
 <meta charset="UTF-8">
 <title>开关灯</title>
 <style type="text/css">
 html, body {
 margin: 0px;
 padding: 0px;
 width: 100%;
 height: 100%;
 cursor: pointer;
 background-color: white;
 }
 </style>
</head>
<body id="bodyEle">
<script type="text/javascript">
 var oBody = document.getElementById("bodyEle");
 oBody.onclick = function () {
 var bg = this.style.backgroundColor;
 switch (bg) {
 case "white":
 this.style.backgroundColor = "red";
 break;
 case "red":
 this.style.backgroundColor = "black";
 break;
 default:
 this.style.backgroundColor = "white";
 }
 }
</script>
</body>
</html>

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

Copyright © 2019- shuicheng.net 版权所有

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务