可維護(hù)的代碼
粗體
斜體
代碼塊
$.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);
}
});