これは、console.log のテキスト フィールドの長さを正確に報告していますが、キーアップごとにコードの下にエラーをスローしています。何かご意見は?
$('.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