我想弄清楚如何使用按鈕來改變頁面的背景顏色代碼javascript更改頁面背景顏色的按鈕
所以基本上我有一個代碼寫出來的按鈕和它的功能,但有問題搞清楚用什麼代碼,以使按鈕改變整個頁面
<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>
您可以通過搜索引擎獲取互聯網上的答案:http://stackoverflow.com/questions/197748/how-do-i-change-the-background -color-with-javascript – 2013-04-05 01:38:12
非常感謝你一直在尋找45分鐘,每一次搜索都給我帶來了如何改變按鈕的顏色,而不是背景 – 2013-04-05 01:47:00