gpt4 book ai didi

javascript - 禁用按钮的 if else 语句

转载 作者:行者123 更新时间:2023-12-03 04:44:22 24 4
gpt4 key购买 nike

我正在尝试创建一个 if else 语句,该语句应在 c 的值为 1 时禁止按下按钮,但我似乎无法让它与d3.js一起工作。

HTML

<button type="button" id="bt1" class="bt1">Previous 10</button>
<button type="button" id="bt2" class="bt2">Next 10</button>

JS

d3.select("#bt2").on("click", () => {
a += 10;
b += 10;
c += 1;

update(a,b,c);
});

d3.select("#bt1").on("click", () => {
a -= 10;
b -= 10;
c -= 1;
update(a,b,c);
});

if (c = 1) { d3.select("bt1").attr('disabled', 'disabled'); }

最佳答案

您只使用了一个=。这会导致 c 变量的值影响到 1,但不会测试其值。

您可以使用 2 或 3 个 =。查看差异here .

if (c === 1) { d3.select("bt1").attr('disabled', 'disabled'); }

关于javascript - 禁用按钮的 if else 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42933042/

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