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

jQuery UI实现的自定义confirm确认框简单介绍

时间:2015-12-05 12:45:58      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

jQuery UI实现的自定义confirm确认框简单介绍:
本章节介绍一下jQuery UI自定义了一个confirm的确认对话框效果。
通过html代码自定义对话框的显示界面和外观,可以自定义confirm框的按钮。
本例中定义了一个confirm确认按钮和一个cancel取消按钮。
html代码:

<button id="callConfirm">Confirm!</button>
<div id="dialog" title="Confirmation Required">
确定要删除元素?
</div>?

jS代码:

$("#dialog").dialog({
  autoOpen: false,
  modal: true,
  buttons : {
    "Confirm" : function() {
      alert("You have confirmed!");
    },
    "Cancel" : function() {
     $(this).dialog("close");
    }
  }
});
$("#callConfirm").on("click", function(e) {
  e.preventDefault();
  $("#dialog").dialog("open");
});

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=17363

更多内容可以参阅http://www.softwhy.com/jqshili/

jQuery UI实现的自定义confirm确认框简单介绍

标签:

原文地址:http://www.cnblogs.com/softwhy/p/5021219.html

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