这是我在网站上的第一个问题,但我有一个真正的问题。我重写了我网站的代码以使其在 IE 上运行......而在 IE8 上,只有此代码用于多个自动完成输入崩溃:
$.widget( "custom.catcomplete", $.ui.autocomplete,
{
_renderMenu: function( ul, items )
{
var that = this,
currentCategory = "";
$.each( items, function( index, item )
{
if ( item.category != currentCategory ) {
ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
currentCategory = item.category;
}
that._renderItemData( ul, item );
});
}
});
$( "#form_rech" ).catcomplete({
source: function(get, response) {
$.getJSON('rom_new_php_recup.php?action=big_search',{ q: get.term; }, function(result) {
response($.map(result, function(item) {
return {
label: item.label.replace(/\\\'/g,"'"),
category: item.category,
hash: item.hash
}
}));
});
},
select: function( event, ui) {
document.location.hash = ui.item.hash;
}
});
经过几次测试后,它接缝吨来自生产线:
$.getJSON('rom_new_php_recup.php?action=big_search',{ q: get.term; }, function(result)
也许特别从,{ q: get.term; },
你有什么想法可以纠正这个吗?非常感谢 !罗曼