function myClass(a,b,c) {
this.alertMyName=function(){alert(instancename)}
{...}
}
进而
foo = myClass(a,b,c);
boo = myClass(a,b,c);
foo.alertMyName(); //it should alert 'foo'
boo.alertMyName(); //it should alert 'boo'
实际上,对于创建大量 html 对象的类,我需要它来为其 ID 加上前缀,以将它们与此类的另一个实例创建的同一对象区分开来。