笔记之_javascript操作
Posted 莫轩ASL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了笔记之_javascript操作相关的知识,希望对你有一定的参考价值。
格式化日期:yyyy-mm-dd格式 function FormatDate(strTime) { var date = new Date(strTime); return date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate(); } alert(FormatDate(new Date())); 数组对象排序:升序 var arr = [{‘name‘: ‘abc‘,‘age‘: 20}, {‘name‘: ‘cde‘,‘age‘: 19}, {‘name‘: ‘dfc‘,‘age‘: 25}, {‘name‘: ‘bde‘,‘age‘: 21}, ]; arr.sort(function(a, b) { return a.age - b.age; }) document.getElementById("mylist").onclick = function() { alert("222"); alert(arr[3].age); alert(new Date().getFullYear()); alert(new Date().getYear()); alert(new Date().getMonth()); }];
以上是关于笔记之_javascript操作的主要内容,如果未能解决你的问题,请参考以下文章