码迷,mamicode.com
首页 > Web开发 > 详细

JQueryUI确认框 confirm

时间:2016-11-07 16:03:35      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:取消   idt   html   this   else   als   bsp   rtm   alert   

$(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

标签:取消   idt   html   this   else   als   bsp   rtm   alert   

原文地址:http://www.cnblogs.com/tiancai/p/6039226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!