如果进一步向下定义,是否可以使用函数/对象

时间:2013-02-11 22:11:02

标签: javascript scope

例如,我可以在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中似乎对我有用。有些主机,例如网页浏览器会抱怨吗?

0 个答案:

没有答案