JQuery UI 自动完成仅适用于 IE8
我正在使用 Jquery UI 自动完成,它在 IE8 中完美运行,但它仅在 IE8 中运行。任何人都可以阐明这一点。我的代码如下,但即使没有选项,它仍然无法工作。 Jquery 1.5
$("#instructor_number").autocomplete({
source: "autocompleteInstructor.php",
minLength: 2,
select: function( event, ui ) {
$("#db_instructor_number").attr("value", ui.item.id);
$(".approvedCentreRow").slideDown("fast");
accentre();
}
});
谢谢
I'm using Jquery UI Autocomplete and it works perfectly in IE8 but it works in IE8 ONLY. Can anyone shed any light on this. My code is below but even with no options it still doesn't work. Jquery 1.5
$("#instructor_number").autocomplete({
source: "autocompleteInstructor.php",
minLength: 2,
select: function( event, ui ) {
$("#db_instructor_number").attr("value", ui.item.id);
$(".approvedCentreRow").slideDown("fast");
accentre();
}
});
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将代码包装在其中:
You have to wrap the code in this: