<!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>
JavaScript基础(28)—更改页面的背景
最新推荐文章于 2020-09-11 07:00:00 发布