• 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);
    	    				}
    	                 }
    		})
    	}
    }
    

      

  • 相关阅读:
    Springboot(一)springboot简介与入门程序
    Java基础(二)流程语句与数组
    Java基础(一)基础常识
    Kubernetes介绍
    K8s 存储
    Kubernetes 集群组件
    Kubernetes 设计理念
    Kubernetes 部署与实战
    容器技术与资源隔离
    Docker 网络配置
  • 原文地址:https://www.cnblogs.com/loveflycforever/p/5862417.html
Copyright © 2020-2023  润新知