这准确地报告了 console.log 中文本字段的长度,但它也在每个 keyup 的代码下方抛出了错误。有什么想法吗?
$('.search').keyup(function () {
var searchTerm = this.value;
console.log(this.value.length);
if (this.value.length>0){
getSuggestions(searchTerm);
}else{
$('#Button').click();
}
})
这就是我在 Chrome 控制台中得到的
Uncaught TypeError: Cannot read property 'length' of undefined pm_functions.js:283
(anonymous function) pm_functions.js:283
p.event.dispatch jquery.min.js:2
g.handle.h