easyui ajax返回数据后刷新页面

前端之家收集整理的这篇文章主要介绍了easyui ajax返回数据后刷新页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
 
 
$.ajax({
	type : "post",url : "${pageContext.request.contextPath}/expros!addExProsInfo.do",data : data,success : function(items) {
		$("#exnotice").html("");
		if(items == 'no') {
			alert("出库失败!");
		} else {
			$('#target_expros_datagrid').datagrid('load');  //找到id为target_expros_datagrid的div刷新数据
			$('#target_ExWarehouse_datagrid').datagrid('load');  //找到id为target_ExWarehouse_datagrid的div刷新数据
		}
	},beforeSend : function() {
		$("#exnotice").html("出库中...");
	},error : function(XMLHttpRequest,textStatus,errorThrown) {
		$("#exnotice").html("");
		alert("系统错误!");
	}
});
原文链接:https://www.f2er.com/ajax/165308.html

猜你在找的Ajax相关文章