App下載
話題 首頁 > JavaScript 教程 > JavaScript 教程話題列表 > 詳情

JavaScript如何實現點擊按鈕清除顏色

精華
??聽?風??153211? 2019-03-02 18:38:20 瀏覽(5110) 回復(4) 贊(0)
首先做兩個矩形,一個透明的另一個是有顏色的<br/>其次做一個按鈕,再點擊按鈕后可以把上面兩個矩形顏色清除
javascript

回答(4)

1328157118 精華 2019-03-03

簡單的實現一下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Remove Color</title>
    <style>
        .box {
            width: 100px;
            height: 100px;
            border: 2px black solid;
            padding: 10px;
            margin: 10px;
        }
        #green {
            background-color: green;
        }
        #red {
            background-color: red;
        }
    </style>
    <script>
        function removeColor() {
            document.getElementById("green").style.backgroundColor = "white";
            document.getElementById("red").style.backgroundColor = "white";
        }
    </script>
</head>
<body>
<p id="green" class="box">綠盒子</p>
<p id="red" class="box">紅盒子</p>
<button type="button" onclick="removeColor()">清除顏色</button>
</body>
</html>
學號:1079430 2019-04-15

我建議,在body里設置背景色為,#fff

FN豆 2019-04-22

背景設置白色或者不設置顏色,然后js控制屬性為空即可清除

Nansly 2019-05-21

有可能整個容器的背景不是白色的哦

要回復,請先登錄 或者注冊