easyui 弹出框\windows弹窗 确定和右上角x关闭按钮点击事件

一、window弹出框按钮事件

 1 $.window({
 2     _oa_id:'name',
 3     title:title,
 4     height:height,
 5     width:width,
 6     iframe:true,
 7     href:'',
 8     hsabutton:flase,
 9     on_my_close:function(){
10     }
11     });
$.window({
 2     _oa_id:'name',
 3     title:title,
 4     height:height,
 5     width:width,
 6     iframe:true,
 7     href:'',
 8     hsabutton:true,
9   buttons:function(){
10     text:'确定',
11     handler:function(){
12     }
13 14
on_my_close:function(){ 15 } 16 });

 

右上角关闭按钮在 on_my_close下写事件即可,如果需要添加按钮,将hasbutton设置为true添加事件

二、alert弹出事件

var msg=$.messager.alert("提示信息","请重新输入","info");
msg.window({
    modal:true,
    onBeforeClose:function(){
        window.close();
    }
});

点击确定和右上角关闭会执行相同事件

posted @ 2019-12-23 15:30  A-dabai  阅读(2971)  评论(0编辑  收藏  举报