如何在输入中只写一个符号?

时间:2018-06-20 08:10:26

标签: javascript

我想将输入字段限制为一个字母(使用JS),一个之后我想得到一个错误。怎么做?

1 个答案:

答案 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');
    }
});