html,,,,,,Button Color Change,, #myButton {, padding: 10px 20px;, font-size: 16px;, cursor: pointer;, },,,,Click Me!,,, document.getElementById('myButton').addEventListener('click', function() {, this.style.backgroundColor = this.style.backgroundColor === 'red' ? 'blue' : 'red';, });,,,,
``,,在这个示例中,我们创建了一个按钮,当按钮被点击时,它会在红色和蓝色之间切换背景颜色。这是通过检查当前的背景颜色并相应地更改它来实现的。