• jq弹框确认


    function delCustomer(id,num){
      var r=confirm("友情提醒:确认要删除客户吗?");
      if (r==true){
      $.ajax({
        type: "POST",
        url: "${contextPath!}/my/customer/delCustomer",
        data: "id="+id,
        success: function(data){
          if(data != null){
            var jsonData = eval("("+data+")");
            var message = jsonData.message;
            var status = jsonData.status;
            if(status == "OK"){
              $('.lists').empty();
              getList();
            }else{
              wxAlert(message);
              return;
            }

          }
        }
      });
    }

  • 相关阅读:
    二叉堆(最小堆, 最大堆)介绍与实现
    C++ 用变量定义数组
    C++ 用变量定义数组
    053185
    053184
    053183
    053182
    053181
    053180
    oracle prior
  • 原文地址:https://www.cnblogs.com/sho560/p/6026943.html
Copyright © 2020-2023  润新知