2013-01-11 41 views
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'); 
}); 
+0

補充,對不起,我沒有這樣做的特權之前。 –

+0

沒問題!只是想我會添加提醒。 –

回答

1

解決的辦法是增加創造像這樣的酥料餅時的屬性和調用顯示:

$(this).popover({content: "Info!", position: "right", trigger: "manual"}).popover('show'); 

這需要告訴屬性,你將控制顯示和隱藏,並且您將始終顯示它。

+0

投票贊成你的回答,謝謝你使用SO並貢獻你的回答給社區! –