摘要: JavaScript 函数 JS中函数分以下类 1 // 普通函数 2 function func(){ 3 console.log(123); 4 } 5 6 // 匿名函数 7 setInterval(function(){ 8 console.log(456) 9 },5000) 10 11 阅读全文
posted @ 2017-10-28 00:03 想54256 阅读(597) 评论(0) 推荐(0) 编辑