例如,我可以在javascript文件中使用:
var cat = null;
function init() {
cat = new Cat();
alert(cat.getLegs());
}
function Cat() {
this.legs = 4;
}
Cat.prototype.getLegs = function() { return this.legs; }
JSLint抱怨此事。但是,JSLint确实似乎抱怨一些看似不重要的事情。但它在Chrome中似乎对我有用。有些主机,例如网页浏览器会抱怨吗?