jQuery 自动完成使 Google Chrome 选项卡崩溃

发布于 2024-12-02 05:36:45 字数 1368 浏览 1 评论 0原文

我正在使用 jQuery 自动完成。我一直使用它没有问题。然而,在这个特定的实例中,结果检索成功,但是一旦选项显示在页面上,选项卡就完全崩溃,Chrome 的选项卡页失效了。

这只发生在 Google Chrome 中。

我想,这个问题可能与自动完成无关(但同时由自动完成触发),但如果我在自动完成代码中遗漏了某些内容,那就是;

content.find(".saleLine input[name='item']").autocomplete({
    source: function (request, response) {
        $.ajax({
            dataType: 'json',
            data: "q=" + request.term + "&page=0&pageLength=20",
            url: $("input[name='itemSearchUrl']").val(),
            success: function (data) {
                var list = new Array();
                $.each(data, function (i, item) {
                    list[i] = {
                        label: item.Code + ': ' + item.Name,
                        value: item.ID,
                        item: item
                    };
                });
                response(list);
            },
            error: function (jqXHR, textStatus, errorThrown) {
                response(null)
            }
        });
    },
    minLength: 2,
    select: function (event, ui) {
        var item = ui.item.item;
        var itemSelect = $(this);
        var row = itemSelect.parent().parent();
        itemSelect.hide();
        row.find("td.unit").html(item.Unit);
        var link = $('<a href="#editLine">' + item.Name + '</a>');
        itemSelect.after(link);
    }
});

I am using jQuery autocomplete. I use it all the time without problems. However, in this particular instance, the results are retrieved successfully, but as soon as the options are displayed on the page, the tab crashes completely, with Chrome's dead tab page.

This only happens in Google Chrome.

The problem may, I guess, be unrelated to (but co-incidentally triggered by) the Autocomplete, but in case I am missing something in my Autocomplete code, here it is;

content.find(".saleLine input[name='item']").autocomplete({
    source: function (request, response) {
        $.ajax({
            dataType: 'json',
            data: "q=" + request.term + "&page=0&pageLength=20",
            url: $("input[name='itemSearchUrl']").val(),
            success: function (data) {
                var list = new Array();
                $.each(data, function (i, item) {
                    list[i] = {
                        label: item.Code + ': ' + item.Name,
                        value: item.ID,
                        item: item
                    };
                });
                response(list);
            },
            error: function (jqXHR, textStatus, errorThrown) {
                response(null)
            }
        });
    },
    minLength: 2,
    select: function (event, ui) {
        var item = ui.item.item;
        var itemSelect = $(this);
        var row = itemSelect.parent().parent();
        itemSelect.hide();
        row.find("td.unit").html(item.Unit);
        var link = $('<a href="#editLine">' + item.Name + '</a>');
        itemSelect.after(link);
    }
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文