jQuery 自动完成使 Google Chrome 选项卡崩溃
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论