可维护的代码
baidu
粗体
斜体
代码块
$.extend({
log:function(msg){
var now=new Date(),
y=now.getFullYear(),
m=now.getMonth()+1,
d=now.getDate(),
h=now.getHours(),
min=now.getMinutes(),
s=now.getSeconds(),
time=y+"/"+m+"/"+d+"/"+h+"/"+min+"/"+s;
console.log(time+msg);
}
});
网友评论