gpt4 book ai didi

javascript - 限制输入框长度为16

转载 作者:行者123 更新时间:2023-11-30 11:31:36 25 4
gpt4 key购买 nike

我想将输入框的最大长度限制为 16 个字符,但破折号和空格不应包含在计数中。到目前为止,这是我的代码

JS

$('.numericSpaceDash').keypress(function(e){

var xcode = (e.which) ? e.which : e.keyCode;
var maxlength = $('.cardtb').attr('maxlength', '16');

var regex = new RegExp("[0-9\- ]");
var str = String.fromCharCode(!e.charCode ? e.which : e.charCode);

if (regex.test(str)) {
return true;
}

e.preventDefault();
return false;

});

HTML

<input type="text" id="sf-cardno" class="tb cardtb rtb numericSpaceDash" autocomplete="off" name="cardno" maxlength="16"/>

最佳答案

似乎你只需要从值中删除空格和破折号,并检查它的长度

$('.numericSpaceDash').on('keypress', function(e) {
if ( [' ','-'].includes(e.key) ) {
// do something if space or hyphen pressed
} else if ( this.value.replace(/(\s|\-)/g,'').length > 15 ) {
e.preventDefault();
} else {
$('#count').html( this.value.replace(/(\s|\-)/g,'').length +1 )
}

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<input type="text" id="sf-cardno" class="tb cardtb rtb numericSpaceDash" name="cardno" />
<br />
Count : <span id="count"></span>

请注意,jQuery 规范化了 e.which,您不需要检查它。

关于javascript - 限制输入框长度为16,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46043099/

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