通常の JS confirm() の代わりに jQuery UI ベースのモーダル ダイアログを確認に使用する方法はありますか? 私は次のようなことができるようにしたいと思います:
if (jquery_ui_confirm('Are you sure?')) {
// do something
}
前もって感謝します。
通常の JS confirm() の代わりに jQuery UI ベースのモーダル ダイアログを確認に使用する方法はありますか? 私は次のようなことができるようにしたいと思います:
if (jquery_ui_confirm('Are you sure?')) {
// do something
}
前もって感謝します。
var jqConfirm = function(msg, success) {
var dialogObj = $("<div style='display:none'>"+msg+"</div>");
$("body").append(dialogObj);
$(dialogObj).dialog({
resizable: false,
height:140,
modal: true,
buttons: {
"OK": function() {
success();
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
};
を使用してこの関数を呼び出します
jqConfirm("This will delete all records", function(){ /*do something here */});
はい、できます..必要なhtmlをダイアログに提供できます
<script>
$(function() {
$( "#dialog-confirm" ).dialog({
resizable: false,
height:140,
modal: true,
buttons: {
"OK": function() {
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
});
</script>
HTMLコード
<div id="dialog-confirm" title="Confirmation Dialog">
<p>
<span class="ui-icon ui-icon-alert"
style="float: left; margin: 0 7px 20px 0;"></span>Would you like to delete this item?
</p>
</div>
Jquery Alert プラグインも使用できます。ここにリンクがあります:http://labs.abeautifulsite.net/archived/jquery-alerts/demo/