gpt4 book ai didi

javascript - 在字段中输入文本时需要启用按钮。

转载 作者:行者123 更新时间:2023-12-02 17:37:51 26 4
gpt4 key购买 nike

当我在文本框中输入文本时,我需要启用按钮。我做错了什么?

代码:

<body>
<script>
function IsEmpty(){
if(input1.value!=null){
sendbutton.enabled==true;
}
}
IsEmpty();
</script>

<input class="draft" name="input1" type="text"/>
<button class="send" id="sendbutton" disabled> Send </button>
<ul class="messages">
</ul>
</body>

最佳答案

JavaScript 更改为:

var input1 = document.getElementById('input1'),
sendbutton = document.getElementById('sendbutton');
function IsEmpty(){
if (input1.value){
sendbutton.removeAttribute('disabled');
} else {
sendbutton.addAttribute('disabled', '');
}
}

input1.onkeyup = IsEmpty;

HTML:

<input class="draft" id="input1" type="text"/> 
<button class="send" id="sendbutton" disabled>Send</button>

DEMO

关于javascript - 在字段中输入文本时需要启用按钮。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22466430/

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