0
這個怎麼回事—變量foo
怎麼沒有從onModified()
的Document
對象中定義?JavaScript示波器和麪向對象
function Document() {
var foo = "dfsadf";
this.onModified = function() {
alert(foo);
};
}
// Does not alert; "foo" doesn't resolve
new Document().onModified();
我想對Document
引用是莫名其妙私有Document
變量公共方法。
你確定嗎?這應該提醒''dfsadf''。 – 2010-11-20 20:46:01
它適合我。 – jwueller 2010-11-20 20:46:38
你正在Firefox上測試,不是嗎? :) – CMS 2010-11-20 20:48:52