Grütze .. äh ... Grüße!
Ehm ja aber warum klappt dann das Beispiel nicht.
Wird es dadurch klarer?
function t1() {
this.v1 = "1";
t1.v2 = "2";
}
function t2() {
this.v1 = "3";
t2.v2 = "4";
}
alert(t1.v1) // --> undefined
alert(t1.v2) // --> undefined
t1()
alert(t1.v1) // --> undefined
alert(t1.v2) // --> 2
// die folgenden beiden Alerts kann ich mir eigentlich sparen, da gleiche Ausgangs-
// situation wie bei den beiden ersten Alerts
alert(t2.v1) // --> undefined
alert(t2.v2) // --> undefined
xy = new t2()
alert(xy.v1) // --> 3
alert(xy.v2) // --> undefined
alert(t2.v1) // --> undefined
alert(t2.v2) // --> 4
Cü
Kai
--
What is the difference between Scientology and Microsoft? One is an
evil cult bent on world domination and the other was begun by L. Ron
Hubbard.
ie:{ fl:( br:< va:) ls:? fo:| rl:? n4:° ss:{ de:] js:| ch:? mo:| zu:|
What is the difference between Scientology and Microsoft? One is an
evil cult bent on world domination and the other was begun by L. Ron
Hubbard.
ie:{ fl:( br:< va:) ls:? fo:| rl:? n4:° ss:{ de:] js:| ch:? mo:| zu:|