我正在使用jquery autosuggest來填充文本框中的數據。當我努力工作,在IE8這個功能我得到的錯誤:控制檯沒有定義如何在ie 8中糾正這個錯誤?
在那裏示值誤差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
請幫我解決錯誤
控制檯在IE中不存在 – voigtan
這篇文章有一個答案和一個備用策略。 http://stackoverflow.com/questions/690251/what-happened-to-console-log-in-ie8 – chapman84
@voigtan它不??哇,原因不使用IE只是繼續上升... – Alnitak