摘要:
1 //封装http请求键值对的函数 2 function Map() { 3 this.keys = new Array(); 4 this.data = {}; 5 //添加键值对 6 this.put = function(key, value) { 7 if (this.data[key] == null) { //如键不存在... 阅读全文
摘要:
1 //获取当前的日期时间函数,格式为“yyyy-MM-dd hh:mm:ss” 2 function getNowFormatDate(date) { 3 if (date == null) { 4 var date = new Date(); 5 } 6 var seperator1 = "-"; 7 var seperator2... 阅读全文
摘要:
1 //将金额数字转换为大写汉字的函数 2 function convertCurrency(money) { 3 //汉字的数字 4 var cnNums = new Array('零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'); 5 //基本单位 6 var cnIntRadice = new Ar... 阅读全文