码迷,mamicode.com
首页 > Web开发 > 详细

style.backgrounColor设置网页背景颜色

时间:2018-01-02 21:18:10      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:htm   doctype   log   获取   var   ext   val   修改   name   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<script type="text/javascript">
function change(){
var bgColor=document.getElementById("txtId").value;//获取输入的颜色值
var _body=document.getElementsByTagName("body");//获取页面属性
_body[0].style.backgroundColor=bgColor;
}
</script>
</style>
<body>

修改背景色: <input type="text" id="txtId"/>
<input type="button"value="change" onclick="change()"/>

</body>
</html>

style.backgrounColor设置网页背景颜色

标签:htm   doctype   log   获取   var   ext   val   修改   name   

原文地址:https://www.cnblogs.com/wxhhts/p/8178863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!