简单 JavaScript 在更改正文颜色时不起作用

Simple JavaScript not working when changing color in the body

看这个tutorial的时候,我试着重现了开头用的JavaScript

但是在设置函数的时候

        function setRandomColor(e) 
        {
            var bodyElement = document.querySelector("body");
            bodyElement.style.background.Color = "yellow";
        }

部分

bodyElement.style.background.Color = "yellow";

不会 运行,只是因为样式未作为选项显示。

根据我的研究,这应该有效。因此我的问题是:这是错误还是什么?

请注意,我使用的是 Visual Studio 2015 和 Apache Cordova,版本 14.0.22609.0(我相信是 CTP6)。

谢谢

你应该使用

bodyElement.style.backgroundColor

根据 w3schools,HTML5 不支持您调用的背景属性。

要正确调用背景色,请尝试:

bodyElement.style.backgroundColor = "yellow";

更多信息:w3schools explanation