- 相關(guān)推薦
javascript面向?qū)ο笾械膶ο笤趺蠢斫?/p>
javacript面向?qū)ο蟪绦蛟O(shè)計中,可以理解為一切都是對象。實例代碼如下:
復(fù)制代碼 代碼如下:
function Cat(){
}
var cat1 = new Cat();//創(chuàng)建類實例
cat1.name = "小狗";
cat1.age = 4;
cat1.color="白色";
document.write(cat1.name);
document.writeln(cat1.constructor);//實例化后對象,是對象
document.writeln(typeof(cat1)+"
");
document.writeln(Cat.constructor);//原型對象本身也是對象
document.writeln(typeof Cat+"
");
var b="hello";//字符串也是對象
document.writeln(b.constructor);//輸出它的構(gòu)造函數(shù)
document.writeln(typeof b+"
");
var c=123;//數(shù)值也是對象
document.writeln(c.constructor);
document.writeln(typeof c+"
");
判斷一個實例化對象是不是某個原型對象類型
復(fù)制代碼 代碼如下:if(cat1 instanceof Cat){//與php的判斷方法相同
window.alert("ok");
}
希望本文所述對大家的javascript程序設(shè)計有所幫助。
【javascript面向?qū)ο笾械膶ο笤趺蠢斫狻肯嚓P(guān)文章:
理解Javascript對象06-21
javascript之Function對象學(xué)習(xí)小結(jié)06-23
體育碩士招生對象06-03
廈門2016年中考報名對象及地點06-17
體育碩士專業(yè)招生對象06-03
成人高考招生對象09-11