2
我有一個窗體有幾個輸入,當我點擊每個領域,它正確地激發焦點方法我已經鏈接了jQuery(我通過控制檯日誌記錄),但它只啓動彈出時,我實際上單擊該字段並且在我選擇它們之間時不起作用(它仍然調用該函數,但popover從不出現)。Bootstrap彈出不會創建時製表
下面是一些示例代碼:
// 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');
});
補充,對不起,我沒有這樣做的特權之前。 –
沒問題!只是想我會添加提醒。 –