1

我试图弄清楚如何使用按钮更改页面背景颜色的代码

所以基本上我已经写出了一个按钮的代码及其功能,但我无法弄清楚使用什么代码来使按钮改变整个页面的颜色

<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>
4

2 回答 2

1
  document.body.style.background = color;

没有更多的东西,就这么简单!

于 2013-04-05T01:37:11.583 回答
-2

亲爱的,试试这个代码:

<FORM> 
<INPUT type="button" value="Change to Yellow!" name="button3" onClick="document.bgColor='yellow'"> <br> 
<INPUT type="button" value="Change to Red!" name="button4" onClick="document.bgColor='red'"> <br> 
<INPUT type="button" value="Change back!" name="button5" onClick="document.bgColor='white'"> </FORM>
于 2014-08-18T07:19:14.913 回答