摘要:
function Rect(w, h) { Rect.name = "My Rect"; //静态成员属于类, 不会被对象继承; 须冠类名调用 this.width = w; //this 是指实例化以后的对象或调用该函数的对象 this.height = h; xyz = 123; //这只能当个内部变量来使用}var r = new Rect();//判断指定的成员名是否属于对象alert("width" in r); //truealert("height" in r); //truealert("name" 阅读全文