JavaScript基础(28)—更改页面的背景

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>javascript040.html</title>
	
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
	<script type="text/javascript">
	function change1()
		{
			/*
				分析:
					由于body标签中的一个属性可以实现背景色的更改。
					所以,首先我们就想到了获取body这个对象。
					通过body对象来改变背景色
					
					html标签属性 纯html标签属性
					html节点属性 把html标签封装成对象后的属性
			*/	
			var bodyNode = document.getElementsByTagName("body")[0];
			//alert(bodyNode.nodeName);
			//颜色组成的三元素:红绿蓝
			//bodyNode.bgcolor = "#ff0000"; //这个时候的bgcolor是标签属性
			//bodyNode.bgColor = "#ff0000"; //我们需要找到的是该标签属性对应的对象属性
			//通过样式写
			bodyNode.style.backgroundColor = "#ff0000";
		}
		
		function change2()
		{
				var bodyNode = document.getElementsByTagName("body")[0];
				bodyNode.style.backgroundColor = "#00ff00";
		}
		function change3()
		{
				var bodyNode = document.getElementsByTagName("body")[0];
				bodyNode.style.backgroundColor = "#0000ff";
		}
		
		function change(c)
		{
				var bodyNode = document.getElementsByTagName("body")[0];
				bodyNode.style.backgroundColor = c;
		}
	</script>
  </head>
  
  <body>
          我们都是好孩子
    <hr/>
    <input type="button" value="红色" οnclick="change1()" />
    <input type="button" value="绿色" οnclick="change2()" />
    <input type="button" value="蓝色" οnclick="change3()" />
    <hr/>
    <input type="button" value="红色" οnclick="change('#ff0000')" />
    <input type="button" value="绿色" οnclick="change('#00ff00')" />
    <input type="button" value="蓝色" οnclick="change('#0000ff')" />
     <hr/>
    <input type="button" value="红色" οnmοusemοve="change('#ff0000')" />
    <input type="button" value="绿色" οnmοusemοve="change('#00ff00')" />
    <input type="button" value="蓝色" οnmοusemοve="change('#0000ff')" />
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值