jQuery와 백그라운드 상호작용

1076 단어 jqueryformsubmit
function saveOrUpdateOrgOk(){
		$('#orgForm').form('submit', {
			 url :'${pageContext.request.contextPath}/listCfgController/insertorUpdatelistcfg.do?sign=${sign}', 
			 onSubmit : function() {
			 return $(this).form('validate');//        
			 },
			 success : function(data) {
			 	if(data=='1'){
			 		alert("    ");
			 		window.close();//     
			 	}else{
			 		alert("    ");
			 	}
				
		 	}
		 });
	
}

방법 2:
submit 제출:form 폼의 매개 변수를 백엔드로 전송
var aQuery = $('form:first').formSerialize();  
alert(aQuery); 
$('form:first').resetForm();
$('form:first').ajaxSubmit({  
    type: 'post',  
    url: 'http://localhost:7001/D-switching-center/workSpace/doSubmit.do?'+aQuery,  
    success: function(data){  
        alert('success'); 
    },  
    error: function(XmlHttpRequest, textStatus, errorThrown){  
        alert('error');  
    }  
});
$('form:first').submit();

좋은 웹페이지 즐겨찾기