摘要: 1.对象字面量。 var clock={ hour:12, minute:10, second:10, showTime:function(){ alert(this.hour+":"+this.minute+":"+this.second); } } clock.showTime();//调用 2 阅读全文
posted @ 2016-12-28 12:13 ddlove 阅读(115) 评论(0) 推荐(0) 编辑