亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

JavaScript

Javascript自定義類型的幾種方法小結(jié)

時間:2024-07-04 14:24:20 JavaScript 我要投稿
  • 相關(guān)推薦

Javascript自定義類型的幾種方法小結(jié)

  1. 定義類型

  復(fù)制代碼 代碼如下:

  function UserObject(parameter) {

  }

  parameter 可省略,相當(dāng)于C#中構(gòu)造函數(shù)參數(shù)。

  2. 實例化自定義類型

  復(fù)制代碼 代碼如下:

  function userobject(parameter){

  }

  //myobject is now an object of type userobject!

  var myobject=new userobject("hi")

  alert(myobject)

  3. 添加屬性

  復(fù)制代碼 代碼如下:

  function userobject(parameter){

  this.firstproperty=parameter

  this.secondproperty="This is the second property"

  }

  //使用

  復(fù)制代碼 代碼如下:

  var myobject=new userobject("hi there.")

  //alerts "hi there."

  alert(myobject.firstproperty)

  //writes "This is the second property"

  document.write(myobject.secondproperty)

  4.添加方法 (circle類)

  復(fù)制代碼 代碼如下:

  //first method function

  function computearea(){

  var area=this.radius*this.radius*3.14

  return area

  }

  //second method function

  function computediameter(){

  var diameter=this.radius*2

  return diameter

  }

  關(guān)聯(lián)到自定義類型:

  復(fù)制代碼 代碼如下:

  /*the below creates a new object, and gives it the two methods defined earlier*/

  function circle(r){

  //property that stores the radius

  this.radius=r

  this.area=computearea

  this.diameter=computediameter

  }

  使用自定義方法:

  復(fù)制代碼 代碼如下:

  var mycircle=new circle(20)

  //alerts 1256

  alert("area="+mycircle.area())

  //alerts 400

  alert("diameter="+mycircle.diameter())

【Javascript自定義類型的幾種方法小結(jié)】相關(guān)文章:

javascript跨域訪問的方法07-19

公文類型有幾種11-08

攝影構(gòu)圖的幾種基本方法05-15

幾種小啞鈴的鍛煉方法06-19

幾種蛋糕卷的制作方法12-23

奶茶店幾種飲品的制作方法07-30

常見的幾種網(wǎng)絡(luò)故障與診斷方法09-03

馬克筆著色的幾種方法12-19

Win7幾種環(huán)境下的安裝方法07-19

如何調(diào)試javascript腳本呢07-19