我有一个带有多个输入的表单,当我单击每个字段时,它会正确触发我与 jQuery 链接的焦点方法(我通过控制台日志记录检查)但是它仅在我实际单击该字段时启动弹出窗口并且在我在它们之间制表符(它仍然调用该函数,但弹出框从未出现)。
这是一些示例代码:
// create the popover on focus but does not work when tabbing
$(".tblData").focus(function(){
$(this).popover({content: "Info!", position: "right"});
}
});
// destroy the popover on blur to be efficient
$(".tblData").blur(function(){
$(this).popover('destroy');
});