Cara menukar warna: gunakan butang
P粉111927962
2023-09-05 16:38:19
<p>Adakah terdapat cara untuk saya menulis lebih sedikit baris kod dalam fungsi ini? Saya mahu ia bertukar antara dua warna apabila anda menekan salah satu butang. Fungsi green() adalah bertentangan dengan red. </p>
<pre class="lang-html prettyprint-override"><code><h1 id="header">merah atau hijau</h1>
<button id="redButton" onclick="red()">red</button>
<button id="greenButton" onclick="hijau()">hijau</button>
</code></pre>
<pre class="brush:php;toolbar:false;">function red() {
document.getElementById("header").innerHTML = "merah"
document.getElementById('header').style.color = "merah"
document.getElementById('redButton').style.color = "putih"
document.getElementById('redButton').style.backgroundColor = "merah"
document.getElementById('Button hijau').style.color = "hitam"
document.getElementById('Button hijau').style.backgroundColor = "kelabu"
}</pre></p>