窗口右小角弹出方式(窗口弹出)

来源:互联网 发布:javascript入门经典pdf 编辑:程序博客网 时间:2024/06/14 13:54

//窗口右小角弹出方式(窗口弹出)

$.ajax({                type : "POST",                url : testUrl,                contentType : "application/json;charset=UTF-8",                dataType : "json",                data : $.toJSON(dataz),                success : function(result) {                    if (result!=null) {                        $.messager.show({                            title : "Operation tips",                            msg : "successfully"                        });                    } else {                        $.messager.show({                            title : "Operation tips",                            msg : "error"                        });                    }                }            });