<head>
    <title>无标题页</title>
    <style type="text/css">
        .day{background-color:Blue;}
        .night{background-color:Black;}
    </style>
    <script type="text/javascript">
        function switchLight(){
                       //var btnSwitch=document.getElementById("btnSwitch");
            if(document.body.className=="night"){
                document.body.className="day";
                btnSwitch.value="关灯"
            }
            else{
                document.body.className="night";
                btnSwitch.value="开灯";
            }
        }
    </script>
</head>
<body class="day">
    <input type="button" id="btnSwitch" value="关灯" onclick="switchLight()" />
</body>
</html>