只要#txtAllowSearch 是平面html,我就有以下脚本:
$(document).ready(function(){
$("#txtAllowSearch").autocomplete({
source: "test_array.aspx",
delay: 0,
select: function (event, ui) {
$("#txtAllowSearch").val(ui.item.value); // display the selected text
$("#txtAllowSearchID").val(ui.item.id); // save selected id to hidden input
}
});
});
一旦#txtAllowSearch 由javascript/jquery 动态创建,这将停止工作。
我是否需要实时使用 jquery 才能使其正常工作?