首页 > 代码库 > Ajax动态切换按钮
Ajax动态切换按钮
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动态切换按钮
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。