gpt4 book ai didi

ios - iOS Safari忽略HTML的“maxlength”属性

转载 作者:行者123 更新时间:2023-12-01 16:15:34 26 4
gpt4 key购买 nike

我正在使用以下代码行来限制用户,但不适用于iPhone
maxlength =“4”;

<input type="number" name="securitycode"  id="securityCode" maxlength="4" />

有什么办法可以在iOS上强制执行此操作吗?

最佳答案

这是一个已知的问题。一种解决方法是使用jQuery来限制这一点。

$('input[name="securitycode"]').keypress(function() {
if (this.value.length >= 4) {
return false;
}
});

关于ios - iOS Safari忽略HTML的“maxlength”属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33080103/

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