gpt4 book ai didi

javascript - 当文本框具有特定数量的字符时选中复选框

转载 作者:行者123 更新时间:2023-11-28 18:49:16 25 4
gpt4 key购买 nike

嗨,我试图在用户在我的输入文本框中键入 8 位数字时选中我的复选框。现在我可以在用户输入时选中复选框,但我是新手,无法弄清楚。感谢您的帮助。

<input id="thecheckbox" type="checkbox">
<input id="theinput" type="text">

$("#theinput").keyup(function () {
if ($(this).val() == "") {
$("#thecheckbox").prop("checked", false);
} else {
$("#thecheckbox").prop("checked", true);
}
});

$("#thecheckbox").change(function () {
if (!$(this).is(':checked')) {
$("#theinput").val("");
}
});

最佳答案

而不是 $(this).val() == ""尝试使用 $(this).val().length != 8 .

关于javascript - 当文本框具有特定数量的字符时选中复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34754258/

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