作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在用户取消选中复选框时清除输入字段(文本框)的值。
当用户在字段中键入内容时,我想选中该复选框。
编辑:有趣的是,你是如何因为完全按照 StackOverflow 的建议去做而得到反对票的: https://blog.stackoverflow.com/2011/07/its-ok-to-ask-and-answer-your-own-questions/
最佳答案
使用这个 HTML:
<input id="thecheckbox" type="checkbox">
<input id="theinput" type="text">
你可以使用这个 javascript:
$("#theinput").keyup(function () {
if ($(this).val() == "") {
$("#thecheckbox").prop("checked", false);
} else {
$("#thecheckbox").prop("checked", true);
}
});
$("#thecheckbox").change(function () {
if (!$(this).is(':checked')) {
$("#theinput").val("");
}
});
它在使用键盘进行制表和/或选中复选框时有效。
关于javascript - 输入字段(文本框)有值时选中/取消选中复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20398300/
我是一名优秀的程序员,十分优秀!