码迷,mamicode.com
首页 > Web开发 > 详细

jQuery标准的AJAX模板

时间:2017-01-05 13:27:02      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:async   rip   window   format   inf   var   text   time   success   

$(‘#saveInformationTemplate_button‘).on(‘click‘, function(){
	if(isEmpty($("#name").val())){
		layer.msg(‘【名称】不可为空!‘);
		
		return;
	} 
	
	var saveInformationTemplate_form = $(‘#saveInformationTemplate_form‘).serialize();

	$.ajax({
		url : ‘saveInformationTemplate.do‘,
		type : "post",
		dataType : "json",
		data : saveInformationTemplate_form,
		cache : false,
		async : false,
		success : function(data, textStatus, jqXHR) {
			if (‘success‘ == textStatus) {
				debugger;
				layer.msg(data.message, {time: 2000, icon:6});
				
				if(1 == data.status){
    				setTimeout(function(){
	    				window.location.href = ‘informationTemplateList.do‘;
    				}, 2000);
				}
			}
		},
		error : function(XMLHttpRequest, textStatus, errorThrown) {
			layer.msg("textStatus = " + textStatus + ", XMLHttpRequest.status = " + XMLHttpRequest.status + ", XMLHttpRequest.readyState = " + XMLHttpRequest.readyState);
		}
	});
});

  

jQuery标准的AJAX模板

标签:async   rip   window   format   inf   var   text   time   success   

原文地址:http://www.cnblogs.com/hapday/p/6251890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!