我正在使用 jquery autosuggest 在文本框中填充数据。当我尝试在 ie8 中使用该功能时,出现错误:控制台未定义
显示错误的jquery代码是:
function lookup(inputString) {
if(inputString.length == 0) {
// Hide the suggestion box.
$('#suggestions').hide();
} else {
// post data to our php processing page and if there is a return greater than zero
// show the suggestions box
$.post("string_search.php", {mysearchString: ""+inputString+""}, function(data){
**console.log(data.length)**
if(data.length >0) {
$('#suggestions').show();
$('#autoSuggestionsList').html(data);
}else{
$('#suggestions').hide();
}
});
}
} //end
请帮我解决错误