我有一个关于 bootstrap popover - javascript 插件的问题。Popover 里面有文本输入,在普通浏览器上查看这个页面时,我可以点击这个输入并输入数据。
但在 android 中,当我打开弹出框并单击输入时,键盘出现但弹出框消失。
在 iOS popover 上按预期工作,但在 Android 上它消失了。我的代码是通用的,简单的:
$('.logMe').popover({
html: true,
placement: 'bottom',
content: function() {
return $('#login').parent().html();
}
})
谢谢你的任何建议。