gpt4 book ai didi

javascript - 通过 if 启用和禁用按钮

转载 作者:行者123 更新时间:2023-12-03 00:47:39 25 4
gpt4 key购买 nike

我的 js 代码有问题。如果没有输入值,我已设法禁用提交按钮,但现在我想在存在值时再次启用它。非常感谢

// submit message
submitButton.addEventListener("click", (e) =>{
if(userMessage.value = " ") {
submitButton.setAttribute("disabled", true);
alert("fill field");

} if(userMessage.value != " ") {
submitButton.setAttribute("disabled", false);
alert("send");
}
// prevent default
e.preventDefault();
})

最佳答案

您分配一个变量而不是条件,第二个变量您给出单个空格。

submitButton.addEventListener("click", (e) =>{
if(userMessage.value == "") {
submitButton.setAttribute("disabled", true);
alert("fill field");

} if(userMessage.value != "") {
submitButton.setAttribute("disabled", false);
alert("send");
}
// prevent default
e.preventDefault();
})

关于javascript - 通过 if 启用和禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53175788/

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