zoukankan      html  css  js  c++  java
  • js 回调


    function getTittleLableData(callback) {
      $.ajax({
        type : 'POST',
        url : ctx + '/feeInf/getDataValue',
        async : true,
        contentType : "application/x-www-form-urlencoded; charset=utf-8",
        success : function(data) {
          if (data.RetCode == 1) {
             var result = data.RetData.valuDate.RetData;
             result = result||'';
             typeof result === 'string' ?result = JSON.parse(result):"";
             var result1 = data.RetData.payProject.RetData;
             result1 = result1||'';
             typeof result1 === 'string' ?result1 = JSON.parse(result1):"";
             typeof callback === 'function'?callback(result,result1):"";

          } else {
            typeof callback === 'function'?callback(null):"";
          }
        },
         error : function(data) {
          stmsCM.alert("提示", "服务器异常", '确定', {
          icon : 'close'
          });
        }
      });
    }

    调用

    getTittleLableData(function(result,payProject){

    })

    not first用法

    $(".g-tabulations .g-toolTables2 tr:not(tr:first)")

  • 相关阅读:
    linux学习笔记2-命令总结2
    Hbase项目(完整版)
    hbase的优化(全)
    hbase读写流程
    Hbase出现ERROR: Can't get master address from ZooKeeper; znode data == null解决办法
    hbase的命令
    快照原理
    xshell同时发送多条命令
    配置NTP集群时间同步(二)
    配置 NTP 时间服务器
  • 原文地址:https://www.cnblogs.com/lizihao/p/6494449.html
Copyright © 2011-2022 走看看