Js实现动态更改Css样式之土豆网开/关灯效果!

 

 1  <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
 2  < html >
 3  < head >
 4       < title > 开关灯效果 </ title >
 5       < style  type ="text/css" >
 6          body
 7           {
 8              background :  #FFF ;
 9           }
10          .day
11           {
12              background :  #000 ;
13           }
14          .night
15           {
16              background :  #FFF ;
17           }
18       </ style >
19       < script  language ="javascript"  type ="text/javascript" >
20           function  Switch() {
21               var  btnSwitch  =  document.getElementById( " btnSwitch " );
22               var  type  =  document.body.className;
23               if  (type  ==   " day " ) {
24                  document.body.className  =   " night " ;
25                  btnSwitch.value  =   " 关灯 " ;
26              }  else  {
27                  document.body.className  =   " day " ;
28                  btnSwitch.value  =   " 开灯 " ;
29              }
30          }
31       </ script >
32  </ head >
33  < body >
34       < input  id ="btnSwitch"  type ="button"  value ="关灯"  onclick ="Switch()"   />
35  </ body >
36  </ html >

 

转载于:https://www.cnblogs.com/zhuiyi/archive/2011/04/23/2025887.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值