我想在引导程序弹出窗口中使用ui-autocomplete,但弹出框对话框中呈现的html表单无法检测到任何事件(例如,单击或焦点)。这是什么解决方案?
popover的JS代码
this.postDialog.popover({
placement: 'bottom',
title: 'New Post',
html: 'true',
content: _template,
container: 'body'
});
自动填充的JS代码
$(elementId).autocomplete({
source: sourceDataFromArray,
minLength: 0,
select: function(event, ui) {
//statements
}
});