1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. javascript面向對象中的對象怎么理解

        時間:2023-03-30 10:24:14 JavaScript 我要投稿
        • 相關推薦

        javascript面向對象中的對象怎么理解

          javacript面向對象程序設計中,可以理解為一切都是對象。實例代碼如下:

          復制代碼 代碼如下:

          function Cat(){

          }

          var cat1 = new Cat();//創建類實例

          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);//輸出它的構造函數

          document.writeln(typeof b+"

          ");

          var c=123;//數值也是對象

          document.writeln(c.constructor);

          document.writeln(typeof c+"

          ");

          判斷一個實例化對象是不是某個原型對象類型

          復制代碼 代碼如下:if(cat1 instanceof Cat){//與php的判斷方法相同

          window.alert("ok");

          }

          希望本文所述對大家的javascript程序設計有所幫助。

        【javascript面向對象中的對象怎么理解】相關文章:

        理解Javascript對象06-21

        Javascript內置核心對象教程06-20

        javascript之Function對象學習小結06-23

        使用ajax操作JavaScript對象的方法08-26

        JAVA面向對象的三大特性08-12

        體育碩士招生對象06-03

        廈門2016年中考報名對象及地點06-17

        體育碩士專業招生對象06-03

        ASP Application對象具體步驟06-20

        成人高考招生對象09-11

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>