easyUi dialog 弹窗

$("#add").dialog({
    title: '添加分类',
    width:600,
    height:300,
    closed: true,
    buttons:[
        {
            text:'保存',
            iconCls:'icon-tick',
            handler:function(){
                if( !$('input[name=cname]').validatebox('isValid') ){
                    $('input[name=cname]').focus();
                    return;
                }
                if( !$('input[name=dw]').validatebox('isValid') ){
                    $('input[name=dw]').focus();
                    return;
                }
                if( !$('input[name=sort]').validatebox('isValid') ){
                    $('input[name=sort]').focus();
                    return;
                }
                $.ajax({
                    url:ThinkPHP['MODULE']+'/Category/index',
                    type:'post',
                    data:{
                        pid:$('.textbox-value').val(),
                        cname:$('input[name=cname]').val(),
                        dw:$('input[name=dw]').val(),
                        isshow:$('input[name=isshow]').val(),
                        sort:$('input[name=sort]').val(),
                    },
                    beforeSend:function(){
                        $("#category").treegrid('loading');
                    },
                    success:function(data){
                        if(data>0){
                            $("#category").treegrid('loaded');
                            $("#add").dialog('close');
                            category_tool.reload();
                            $.messager.show({
                                title:'提示信息',
                                msg:"添加分类成功!",
                                timeout:1000,
                                showType:'slide'
                            });
                        }
                    }
                })
            }
        },
        {
            text:'关闭',
            iconCls:'icon-cross',
            handler:function(){
                $("#add").dialog('close');
            }
        }
    ],
    onClose:function () {
        $("#add").form('clear');

    }
});

你可能感兴趣的:(easyUi dialog 弹窗)