我在使用动态创建输入的jQuery自动完成时遇到问题(再次使用jQuery创建)。我无法自动完成绑定到新输入。
自动填充
$("#description").autocomplete({
source: function(request, response) {
$.ajax({
url: "../../works_search",
dataType: "json",
type: "post",
data: {
maxRows: 15,
term: request.term
},
success: function(data) {
response($.map(data.works, function(item) {
return {
label: item.description,
value: item.description
}
}))
}
})
},
minLength: 2,
});
带输入的新表格行
var i = 1;
var $table = $("#works");
var $tableBody = $("tbody",$table);
$('a#add').click(function() {
var newtr = $('<tr class="jobs"><td><input type="text" name="item[' + i + '][quantity]" /></td><td><input type="text" id="description" name="item[' + i + '][works_description]" /></td></tr>');
$tableBody.append(newtr);
i++;
});
我知道问题是由于在加载页面后创建的内容,但我无法弄清楚如何绕过它。我已经阅读了几个相关的问题并且遇到了jQuery live方法,但我还是在堵塞!
有什么建议吗?
答案 0 :(得分:24)
首先,您需要存储.autocomplete()
的选项,如:
var autocomp_opt={
source: function(request, response) {
$.ajax({
url: "../../works_search",
dataType: "json",
type: "post",
data: {
maxRows: 15,
term: request.term
},
success: function(data) {
response($.map(data.works, function(item) {
return {
label: item.description,
value: item.description
}
}))
}
})
},
minLength: 2,
};
使用class
属性标记input
更为简洁,如:
<input type="text" class="description" name="item[' + i + '][works_description]" />
最后,当您创建新表格行时,将.autocomplete()
应用已存储在autocomp_opt
中的选项:
$('a#add').click(function() {
var newtr = $('<tr class="jobs"><td><input type="text" name="item[' + i + '][quantity]" /></td><td><input type="text" class="description" name="item[' + i + '][works_description]" /></td></tr>');
$('.description', newtr).autocomplete(autocomp_opt);
$tableBody.append(newtr);
i++;
});
答案 1 :(得分:0)
我发现我需要在追加后添加自动完成功能:
$tableBody.append(newtr);
$('.description', newtr).autocomplete(autocomp_opt);