easyui form表单提交标准格式

 $("#temForm").form('submit', {
            url: '',
            queryParams: {},
            cache: false,
            type: 'POST',
            dataType: 'json',
            beforeSubmit: function () {
                return $(this).form('validate');
            },
            success: function (data, status) {
                
            }
        });
原文地址:https://www.cnblogs.com/zhangwei595806165/p/4516282.html