我想在引导模式框中使用引导确认 http://ethaizone.github.io/Bootstrap-Confirmation/#example。
然而,在调用模态框时,我通过ajax post方法调用模态框。在调用模态框时,我还包含一些脚本,但它不起作用。
我在jquery中发送的脚本是http://www.jqueryscript.net/other/Clean-jQuery-Confirmation-Dialog-Plugin-with-Bootstrap-Popovers-Bootstrap-Confirmation.html
在模态框窗口中使用此脚本...
<script>
$(function(){
$('[data-toggle="confirmation"]').confirmation();
$('[data-toggle="confirmation"]').confirmation({
placement: 'top', // How to position the confirmation - top | bottom | left | right
trigger: 'click', // How confirmation is triggered - click | hover | focus | manual
target : '_self', // Default target value if `data-target` attribute isn't present.
href : '#', // Default href value if `data-href` attribute isn't present.
title: 'Are you sure?', // Default title value if `data-title` attribute isn't present
template: '<div class="popover">' +
'<div class="arrow"></div>' +
'<h3 class="popover-title"></h3>' +
'<div class="popover-content text-center">' +
'<div class="btn-group">' +
'<a class="btn btn-small" href="" target=""></a>' +
'<a class="btn btn-small" data-dismiss="confirmation"></a>' +
'</div>' +
'</div>' +
'</div>',
btnOkClass: 'btn-primary', // Default btnOkClass value if `data-btnOkClass` attribute isn't present.
btnCancelClass: '', // Default btnCancelClass value if `data-btnCancelClass` attribute isn't present.
btnOkLabel: '<i class="icon-ok-sign icon-white"></i> Yes', // Default btnOkLabel value if `data-btnOkLabel` attribute isn't present.
btnCancelLabel: '<i class="icon-remove-sign"></i> No', // Default btnCancelLabel value if `data-btnCancelLabel` attribute isn't present.
singleton: false, // Set true to allow only one confirmation to show at a time.
popout: false, // Set true to hide the confirmation when user clicks outside of it.
onConfirm: function(){}, // Set event when click at confirm button
onCancel: function(){}}) // Set event when click at cancel button
});
</script>
答案 0 :(得分:2)
我刚刚为你做了一个演示。它可能会帮助你。 请检查以下小提琴 - http://bit.ly/1aD42Y8
答案 1 :(得分:1)
如果你的模态被ajax调用,你必须知道模态框内的元素是被删除的元素。
请参阅直接和委派活动一章 https://api.jquery.com/on/
那么你应该这样使用它:
$(document).find('[data-toggle="confirmation"]').confirmation();
这样您就可以访问由javascript或ajax操作添加的委托元素。