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的主要内容,如果未能解决你的问题,请参考以下文章

实现弹出和确认消息对话框效果

一个关于JS confirm 确认框的问题

js确认框confirm()用法实例详解

自定义 confirm 确认框

前端开发之弹出框系列教程二:Confirm确认框

AntD Modal.confirm 确认弹出框用法