如何限制文本框只接受10个字符。如果我们输入第11个字符,它应该会显示一条消息,说“你只能输入10个字符”。
答案 0 :(得分:1)
尝试使用此功能:
function check_content(){
var text = document.getElementById("your_textbox_id").value;
if(text.length > 10){
alert('Length should not be greater than 10');
return false;
} else {
return true;
}
}
答案 1 :(得分:0)
Try this code:
<input type="text" id="Textbox" name="Textbox" maxlength="10" />
答案 2 :(得分:0)
文本框代码。
<input name="mytext" type="text" value='' id="mytext" onkeyup="TextLimit()">
并在文本框的keyup
事件中添加javascript函数。
<script>
function TextLimit(){
var text = document.getElementById('mytext');
if (text.value.length >= 10){
alert('you are allowed to enter 10 characters only');
}
}
</script>