摘要:
var arr = new Array(); if(Array.isArray()){ console.log('yes') } else { conssole.log('no') } 阅读全文
摘要:
obj.sort(function(a, b) { return Date.parse(a.time) - Date.parse(b.time); //时间正序 }); JavaScript sort() 方法 定义和用法 sort() 方法用于对数组的元素进行排序。 语法 arrayObject. 阅读全文
摘要:
date:要操作的时间目标 days: 要加减的天数时间 addDate: function(date, days) { if (date == '') { return '' }; if (days == undefined || days == '') { days = 0; } var tim 阅读全文
摘要:
function xmlStr2js(xmlStr) { var tagNames = xmlStr.match(/<\w+>/g) tagNames = deWeightTagNames(tagNames) var jsonObj = new Object() tagNames.forEach(f 阅读全文