
js
zkCodes
修炼升级
展开
-
解析EXCEL工具类
var ZkExcel = function(param) { this.file = param.file; var that = this; //开始执行Excel解析 this.run = function() { var reader = new FileReader(); reader.onload = function(e) { var data = e.tar...原创 2019-11-29 11:19:22 · 250 阅读 · 0 评论 -
js数据缓存工具类
// 常用的工具类function ZkUtil(){ }//数据缓存工具类var ZkDataCache=function(){ this.updateMap= new Map(); this.insertSet=new Set(); this.deleteSet=new Set(); //添加修改项 this.addUpdate=function(data){...原创 2019-11-28 21:15:06 · 376 阅读 · 0 评论 -
AJAX使用教程
AJAX使用教程转载 2019-11-28 16:29:44 · 247 阅读 · 0 评论