PHP-Code:
function meinObjekt ()
{
this.bla = 'laber';
this.doSomething = function ()
{
this.blubb = 'blubber';
this.doSomethingElse = function()
{
alert (this.bla);
}
this.doSomethingElse();
}
}
Peter
Kommentar