此代码片段用于创建新对象,它在 IE 9 以外的其他浏览器上运行良好。
function Item(no, name, qty, lineNo) {¬
this.no = no;¬
this.name = name;¬
this.qty = qty;¬
this.lineNo = lineNo;¬
}¬
Item.prototype = Object.create(null);¬ // error this line
我怎样才能解决这个问题 ?