当用户删除文本框中的文本时如何取消选中复选框?
我有以下代码来在用户按任意键时检查复选框。但是,我的要求是当用户删除他在文本框中输入的文本时取消选中该复选框。请建议我该怎么做?
<input type="text" id="search" name="mysearch"
onkeypress="enableCheckBox('search')"/>
<input type="checkBox" id="search_cb"
name="search_cb"/>
function enableCheckBox(id) {
var myCheckbox = document.getElementById(id + "_cb");
if(!myCheckbox.checked) {
myCheckbox.checked = true;
}
}
I have following code to check a checkbox when user presses any key. However my requirement is to uncheck the checkbox when the user deletes the text entered by him in the text box. Please suggest how do I do this?
<input type="text" id="search" name="mysearch"
onkeypress="enableCheckBox('search')"/>
<input type="checkBox" id="search_cb"
name="search_cb"/>
function enableCheckBox(id) {
var myCheckbox = document.getElementById(id + "_cb");
if(!myCheckbox.checked) {
myCheckbox.checked = true;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能还想重命名该函数,因为它会检查自己是否键入了某些内容,但取消检查输入是否为空。
You might want to rename the function as well since it's going to check itself if something is typed, but uncheck if the input is empty.
您可以尝试更改处理程序以检查文本输入中是否有任何文本。
You might try changing your handler to check whether the text input has any text in it.