<head>
<title>开关灯</title>
<script src="../js/jquery-1.4.2.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#switch").click(function() { $(document.body).toggleClass("night"); });//这段代码,我觉得没有什么错误,但我运行的时候就是无法实现页面背景颜色切换功能,我想问一下原因
});
</script>
<style type="text/css">
.ninght{background-color:Black;}
</style>
</head>
<body>
<input type="button" value="开关灯" id="switch" />
</body> |