ブートストラップモーダルボックス内でブートストラップ確認 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>