摘要: 浏览器对照表http://kangax.github.com/es5-compat-table/Function 1:Object.create这是一个很重要的改动,现在我们终于可以得到一个原型链干净的对象了。以前要创建一个类Js代码functionCat(name){this.name=name;this.paws=4;this.hungry=false;this.eaten=[];}Cat.prototype={constructor:Cat,play:function(){this.hungry=true;return'playing!';},feed:function( 阅读全文
posted @ 2012-09-09 10:28 awp110 阅读(409) 评论(0) 推荐(0)