首页 > Web开发 > 详细

jquery开关灯

时间:2020-10-11 18:41:32      阅读:33      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title></title>

        <script src="jquery-3.5.1.min.js" type="text/javascript" charset="utf-8"></script>

        <script type="text/javascript">
            // 入口函数
            $(document).ready(function() {
                var jqOpenLight = $("#openLight");
                var jqCloseLight = $("#closeLight");
                var jqBody = $("body");

                $(jqOpenLight).click(function() {
                    jqBody[0].style.backgroundColor = "white";
                })

                $(jqCloseLight).click(function() {
                    jqBody.get(0).style.backgroundColor = "black";
                })
            });
        </script>

        <style type="text/css">
            div {
                background-color: red;
                height: 300px;
                margin: 50px;
            }
        </style>
    </head>
    <body>
        <input type="button" name="" id="openLight" value="开灯" />
        <input type="button" name="" id="closeLight" value="关灯" />

        <div id="">

        </div>
    </body>
</html>

技术分享图片

jquery开关灯

原文:https://www.cnblogs.com/zhangxuechao/p/13797499.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!