我想将 ui-autocomplete 与引导弹出框一起使用,但弹出框对话框中呈现的 html 表单无法检测到任何事件(例如单击或焦点)。这个有什么解决办法??
弹出框的 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
}
});