我想将输入字段限制为一个字母(使用JS),一个之后我想得到一个错误。怎么做?
答案 0 :(得分:1)
您会想要这样的东西
香草JS
<input onkeydown="checkLen(this)" type="text" maxlength="1" />
function checkLen(e) {
if (el.value.length > 1) {
alert("ERROR");
}
}
jQuery
$('#input').keydown( function(e){
if ($(this).val().length > 1) {
alert('ERROR');
}
});