配置 完成以后 总报错:use space not tabs? 还有 要求使用 use 'strict', 我加上以后依旧提示 错误。
use 'strict'
function Student(name) {
this.name = name;
return this;
}
Student.prototype.addMsg = function(arg1) {
this.arg1 = arg1;
};
use 'strict'
function Student(name) {
this.name = name;
return this;
}
Student.prototype.addMsg = function(arg1) {
this.arg1 = arg1;
};
2015-03-12
举报