JavaScript scopes and object-orientation
What's wrong with this—how come the variable foo
isn't defined f开发者_Go百科rom within onModified()
of a Document
object?
function Document() {
var foo = "dfsadf";
this.onModified = function() {
alert(foo);
};
}
// Does not alert; "foo" doesn't resolve
new Document().onModified();
I'd like to have public methods on Document
that reference variables that are somehow private to Document
.
Your Document
function is clashing with the Document
constructor from the DOM.
document instanceof Document; // true
As with any host-object its behavior completely depends on the host environment, and they often can give you unexpected results.
As far I've tested, on Firefox you are not able to replace its value, therefore I would recommend you to either, rename your function, or, declare it on other scope.
精彩评论