不幸的是,文檔Bootbox(http://paynedigital.com/2011/11/bootbox-js-alert-confirm-dialogs-for-twitter-bootstrap)沒有教會如何調用確認對話框。由於它在文檔窗口中總是在頁面加載時出現,出現了什麼問題,因此在點擊刪除按鈕調用時應該會出現。 這是嘗試失敗的代碼。Bootbox確認對話框問題
// show "false" does not work, the confirm window is showing when page is loaded.
$(function() {
bootbox.confirm("Confirm delete?", "No", "Yes", function(result) {
show: false
});
});
// need show the confirm window when the user click in a button, how to call the confirm window?
<td><a class="icon-trash" onclick="bootbox.confirm();" href="{% url 'del_setor' setor.id %}" title="Delete"></a></td>
如何將此Bootbox設置爲僅在單擊刪除按鈕時才顯示? 謝謝!
編輯 - 溶液:現在
$(function() {
$("a#confirm").click(function(e) {
e.preventDefault();
var location = $(this).attr('href');
bootbox.confirm("Confirm exclusion?", "No", "Yes", function(confirmed) {
if(confirmed) {
window.location.replace(location);
}
});
});
});
,當我點擊 「是」 刪除工作。 我讓插件的開發者把整個樣本放在文檔中,所以用戶不需要在點擊「是」時創建關於如何刪除對象的文章。 此致敬禮。
笑笑 - 是的,這似乎喜歡的事,開發商將需要知道的。 –