gpt4 book ai didi

javascript - 多个按钮的切换按钮颜色不会改变

转载 作者:太空宇宙 更新时间:2023-11-04 14:18:29 28 4
gpt4 key购买 nike

我在网页中有多个按钮。但是尝试在每次单击时更改单个按钮的按钮颜色。我的代码如下。但不工作......有什么帮助吗?

<html>
<head>
<script type="text/javascript">
function toggleColor(id) {
if(document.getElementById(id).style.background !== 'rgb(255,0,0)') {
document.getElementById(id).style.background = '#FF0000';

}
else {
document.getElementById(id).style.background = '#00FF00';
}
}
</script>
</head>
<body>
<button type="button" id="1" style="background-color:#00FF00;" onclick="toggleColor(this.id)">1</button>
</body>

最佳答案

这是工作代码。您的代码有错误。没有脚本标签,无效的 if 语句。使用此代码,它正在运行。

<html>
<head>
<script>
window.toggle = true;
function toggleColor(id) {
console.log(document.getElementById(id).style.background);
console.log(document.getElementById(id).style.background.indexOf('rgb(0, 255, 0)'));
if(document.getElementById(id).style.background.indexOf('rgb(0, 255, 0)')>0)
document.getElementById(id).style.background = '#FF0000';
else if(document.getElementById(id).style.background.indexOf('rgb(255, 0, 0)')>0)
document.getElementById(id).style.background = '#00FF00';
}
</script>
</head>
<body>
<button type="button" id="1" style="background:#00FF00;" onclick="toggleColor(this.id)">1</button>
</body>

关于javascript - 多个按钮的切换按钮颜色不会改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19050400/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com