我正在尝试在输入中自动完成,它在Chrome,Safari和Firefox中运行良好。它不仅仅适用于IE 9。请帮忙。
$("#name").autocomplete({
select: function(event, iu) {
id = event.toElement.innerText.split('-')
$("#id_estudiante").val(id[1]);
$("#FinancieroGrid").load('php/Financiero/librerias/FindStudent.php?action='+id[1].replace(' ',''));
},
source:'php/Financiero/function/getstuden.php',
minLength:1
});
答案 0 :(得分:1)
IE9不喜欢.innerText
,版本9+使用.textContent
所以不要捣乱,更换此
id = event.toElement.innerText.split('-')
使用jQuery自己的方法
id = $(event.target).text().split('-');