gpt4 book ai didi

javascript - jquery 最小和最大长度验证

转载 作者:可可西里 更新时间:2023-11-01 13:02:43 24 4
gpt4 key购买 nike

我想要minlength=8maxlength=14,我该如何实现这个验证。

html:

<input type="text" name="354" id="field">

jQuery:

$("input[name=354]").keypress(function(e){
if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
$("#errmsg").html("Digits only").show().fadeOut("slow");
return false;
}
});

最佳答案

现在对于 HTML5,您可以使用属性 minlengthmaxlength

<input type="text" minlength="8" maxlength="14" name="354" id="field">

关于javascript - jquery 最小和最大长度验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37057513/

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