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

Ajax动态切换按钮

时间:2016-09-11 20:22:15      阅读:437      评论:0      收藏:0      [点我收藏+]

标签:

function changeAjax(str, obj) {
	var idx = $(obj).parent().parent().index();
	if(confirm(‘确定执行操作么?‘)) {
		$.ajax({
			type: "GET",
	        url: "web.action?rtp=DrawLotteryResult&atp=5&id="+str,
	        success: function(data){
	        	var dataJson = JSON.parse(data);
// 	        	alert(dataJson.state+"."+dataJson.result);
	    				if(dataJson.result == ‘ok‘) {
	    					// 最后一个子节点
// 	    					alert($(‘#customers tbody tr‘).eq(idx).children().last().prop("outerHTML"));
	    					$(‘#customers tbody tr‘).eq(idx).children().eq(7).empty();
	    					$(‘#customers tbody tr‘).eq(idx).children().eq(3).empty();
	    					var html1 = ‘‘;
	    					var html2 = ‘‘;
	    					if(dataJson.state == ‘1‘) {
	    						html1 += ‘<a class="btn btn-danger btn-mini" onclick="changeAjax(‘+str+‘, this)">取消</a>‘;
	 	                    	html2 += ‘已发放‘;
	    					} else {
	 	                    	html1 += ‘<a class="btn btn-primary btn-mini" onclick="changeAjax(‘+str+‘, this)">发放</a>‘;
	 	                    	html2 += ‘<font color="red">未发放</font>‘;
	    					}
                          	$(‘#customers tbody tr‘).eq(idx).children().eq(7).html(html1);
                          	$(‘#customers tbody tr‘).eq(idx).children().eq(3).html(html2);
	    				}
	                 }
		})
	}
}

  

Ajax动态切换按钮

标签:

原文地址:http://www.cnblogs.com/loveflycforever/p/5862417.html

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