我想检查在文本框中输入的字符串的大小。 我错过了什么?
var com = document.getElementById("comment").value;
if(com.lenght <= 100){
alert("good");
} else {
alert("bad");
}
答案 0 :(得分:22)
尝试将长度更改为长度。
答案 1 :(得分:4)
拼写错误lenght
- 应为length
答案 2 :(得分:3)
写的长度不长。
答案 3 :(得分:3)
误拼写:
if(com.lenght <= 100){
使用它:
if(com.length <= 100){