JQuery UI 自动完成仅适用于 IE8

发布于 2024-11-28 04:24:39 字数 392 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫罗兰の梦幻 2024-12-05 04:24:39

您必须将代码包装在其中:

$(function() {
  ...
}

You have to wrap the code in this:

$(function() {
  ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文