JQueryUI确认框 confirm
Posted 甜菜波波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQueryUI确认框 confirm相关的知识,希望对你有一定的参考价值。
$(function(){ $(‘#AlertMsg‘).dialog({ autoOpen: false, width: 300, modal: true, position: ‘center‘, buttons: { "确定": function() { $(this).dialog("close"); } } }); $(‘#ConfirmMsg‘).dialog({ autoOpen: false, width: 300, modal: true, position: ‘center‘, buttons: { "确定": function() { mDialogCallback(true); $(this).dialog(‘close‘); }, "取消": function() { mDialogCallback(false); $(this).dialog(‘close‘); } } }); }); var mDialogCallback; function ShowMsg(msg, callback) { if (callback == null) { $(‘#AlertMsgBody‘).html(msg); $(‘#AlertMsg‘).dialog(‘open‘); } else { mDialogCallback = callback; $(‘#ConfirmMsgBody‘).html(msg); $(‘#ConfirmMsg‘).dialog(‘open‘); } }
以上是关于JQueryUI确认框 confirm的主要内容,如果未能解决你的问题,请参考以下文章