分类简介

该分类暂无描述

11 篇文章

// 计算字符串公式的值比如 1*50 计算结果为 50 function GetEval() { this.name = 'geteval'; this.maxArgs = 1; this.minArgs = 1; } GetEval.prototype ...

阅读全文 #71

function excelTimeToString(excelTime) { // 判断excelTime是否为空 if(!excelTime){ return ""; } // Excel时间起点为1900年1月0日(1900年1月1日的前一天) ...

阅读全文 #22