现在,我正在尝试开发一个非常简单的按钮,可以改变整个网页的背景颜色。下面是我拥有的代码
var mybutton = document.querySelector('button');
var myBack = document.querySelector("body");
var isRand = false;
var ranNumber1 = Math.floor(Math.random() * 256);
var ranNumber2 = Math.floor(Math.random() * 256);
var ranNumber3 = Math.f
我对javascript感到非常抱歉,因为这个问题很简单。
在加载的网页,我希望我的div是一个随机的颜色表示在我的数组。
HTML
body onload="start"()"
JS
var color = ["red", "blue", "yellow", "green"];
function start() {
document.getElementById("sq").style.backgroundColor = color[Math.floor(Math.r
对于我的JS html5类,我正在尝试创建一个网页,允许用户选择背景颜色,以及他们是想使用SANS SERIF字体还是SANS字体。我有工作的背景颜色--
var inputColor = prompt( "Enter a color name for the " +
"background of this page", "" );
document.body.setAttribute( "style", "background-color: " + inputColor );
我不知道如何使用相同的想法,