iOS Safari忽略了HTML' maxlength'属性

时间:2015-10-12 11:34:31

标签: ios css iphone jsp

我使用下面的代码来限制用户但不适用于iphone     maxlength =" 4&#34 ;;

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

有没有办法在iOS上强制执行此操作?

1 个答案:

答案 0 :(得分:0)

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

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