// 计算程序执行的精确时间function getFunctionTimeWithDate (func) { var timeStart = Date.now(); // 执行开始 func(); // 执行结束 var timeEnd = Date.now(); // 返回执行时间 retur... Read More
posted @ 2015-09-06 14:36 俊余 Views(365) Comments(0) Diggs(0)