我使用下面的代码来限制用户但不适用于iphone maxlength =" 4&#34 ;;
<input type="number" name="securitycode" id="securityCode" maxlength="4" />
有没有办法在iOS上强制执行此操作?
答案 0 :(得分:0)
这是一个已知问题。一个解决方法是使用jQuery来限制它。
$('input[name="securitycode"]').keypress(function() {
if (this.value.length >= 4) {
return false;
}
});