我试图弄清楚如何使用按钮更改页面背景颜色的代码
所以基本上我已经写出了一个按钮的代码及其功能,但我无法弄清楚使用什么代码来使按钮改变整个页面的颜色
<script>
function changeColor()
{
};
function changeText()
{
alert ("change text in this part");
};
function sendMsg()
{
alert ("change msg content here");
}
</script>
<body>
<h1>Welcome to my program!</h1>
<button onclick="changeColor()">Color</button>
<button onclick="changeText()">Text</button> </br>
<p>Can I ask you something Ive always wanted to ask the real Batman?</p> </br>
<input type="text" name="">
</body>