最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript Document.bgColor does not work - Stack Overflow

programmeradmin1浏览0评论

In the below code, I get the two dialog boxes, but the bgColor of the page is never changed. Is there any standard that font / color changes are not honored in JavaScript ?

 <html>
<head>
</head>

<body bgColor="GRAY">
<script type="text/javascript">
document.write("This message is written by JavaScript");
alert('Am here');
alert('Am here again');
document.bgcolor="WHITE";
</script>
</body>

</html>

In the below code, I get the two dialog boxes, but the bgColor of the page is never changed. Is there any standard that font / color changes are not honored in JavaScript ?

 <html>
<head>
</head>

<body bgColor="GRAY">
<script type="text/javascript">
document.write("This message is written by JavaScript");
alert('Am here');
alert('Am here again');
document.bgcolor="WHITE";
</script>
</body>

</html>
Share Improve this question asked Apr 21, 2010 at 20:57 Arun RArun R 8,3926 gold badges39 silver badges46 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

bgColor is really, really old. Better use CSS values. And you need to address the body element, not the document.

This should work: document.body.style.backgroundColor = '#ffffff'

That's because it's bgColor and not bgcolor (note the case).

Also, using document.body.style.backgroundColor might be a better idea. And I would use hexadecimal instead of named colors :)

So, use #ffffff instead of WHITE.

发布评论

评论列表(0)

  1. 暂无评论