2015-10-12 123 views

回答

0

這是一個已知問題。一個解決方法是使用jQuery來限制它。

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