欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS 建立對象的方法

 更新時間:2007年04月21日 00:00:00   作者:  
Objects are useful to organize information.
對于組織信息來講對象是非常有用的 

JavaScript Objects
JS對象
Earlier in this tutorial we have seen that JavaScript has several built-in objects, like String, Date, Array, and more. In addition to these built-in objects, you can also create your own.
在教程的前面部分我們已經(jīng)看過JS有一些內(nèi)置的對象,像String,Date,Array和更多一些。除此之外我們可以建立屬于自己的對象。

An object is just a special kind of data, with a collection of properties and methods.
對象是特殊的數(shù)據(jù),有著相關(guān)的一系列屬性和方法。

Let's illustrate with an example: A person is an object. Properties are the values associated with the object. The persons' properties include name, height, weight, age, skin tone, eye color, etc. All persons have these properties, but the values of those properties will differ from person to person. Objects also have methods. Methods are the actions that can be performed on objects. The persons' methods could be eat(), sleep(), work(), play(), etc.
讓我們說明一個例子:一個人為一個對象。屬性就是與對象關(guān)聯(lián)的值。人的屬性包含名字,身高,體重,年齡,膚色,眼睛的顏色等等。所有人都有這些屬性,但是值卻可能人與人都不同。對象還有方法。方法就是對象的動作行為。人的方法就可以是eat()[吃],sleep()[睡覺],work()[工作]等等。

Properties屬性
The syntax for accessing a property of an object is:
關(guān)聯(lián)一個對象的屬性語法為:

objName.propName 

You can add properties to an object by simply giving it a value. Assume that the personObj already exists - you can give it properties named firstname, lastname, age, and eyecolor as follows:
你可以通過賦值來給對象添加屬性。假設(shè)personObj已經(jīng)存在 - 你可以給對象添加姓和名以及下面的年紀(jì)和眼睛顏色:

personObj.firstname="John"

personObj.lastname="Doe"
personObj.age=30
personObj.eyecolor="blue"document.write(personObj.firstname) 

The code above will generate the following output:
上面的代碼就會輸出:

John 

Methods方法
An object can also contain methods.
一個對象還可以包括方法

You can call a method with the following syntax:
你可以用下面的語法來調(diào)用一個方法:

objName.methodName() 

Note: Parameters required for the method can be passed between the parentheses.
方法所需要的參數(shù)寫在括號之間

To call a method called sleep() for the personObj:
為personObj對象調(diào)用一個sleep()方法

personObj.sleep() 


--------------------------------------------------------------------------------

Creating Your Own Objects
建立你自己的對象
There are different ways to create a new object:
建立新的對象有兩種不同的方法

1. Create a direct instance of an object
直接建立

The following code creates an instance of an object and adds four properties to it:
下面的代碼可以直接建立一個對象并給它加上四個屬性:

personObj=new Object()
personObj.firstname="John"

personObj.lastname="Doe"
personObj.age=50
personObj.eyecolor="blue" 

Adding a method to the personObj is also simple. The following code adds a method called eat() to the personObj:
給對象建立一個方法也十分的簡單。下面的代碼就加了一個eat()方法

personObj.eat=eat 

2. Create a template of an object
建立一個對象模塊

The template defines the structure of an object:
模塊定義對象的構(gòu)架

function person(firstname,lastname,age,eyecolor)
{
this.firstname=firstname
this.lastname=lastname
this.age=age
this.eyecolor=eyecolor


Notice that the template is just a function. Inside the function you need to assign things to this.propertyName. The reason for all the "this" stuff in is that you're going to have more than one person at a time (which person you're dealing with must be clear). That's what "this" is: the instance of the object at hand.
注意模塊只是一個函數(shù),函數(shù)里面你需要給this.propertyName分配東西。所有都是"this"的原因是你接下來會一下子有不止一個person(是哪個person你必須清楚)。

Once you have the template, you can create new instances of the object, like this:
一旦你有了模塊,你就可以這樣直接建立新的對象了:

myFather=new person("John","Doe",50,"blue")
myMother=new person("Sally","Rally",48,"green") 

You can also add some methods to the person object. This is also done inside the template:
你也可以加一些方法給person對象,這也可以在模塊里完成:

function person(firstname,lastname,age,eyecolor)
{
this.firstname=firstname
this.lastname=lastname
this.age=age
this.eyecolor=eyecolorthis.newlastname=newlastname


Note that methods are just functions attached to objects. Then we will have to write the newlastname() function:
注意,這個方法只是對象的附加函數(shù),接下來我們將必須寫入newlastname()函數(shù)

function newlastname(new_lastname)
{
this.lastname=new_lastname


The newlastname() function defines the person's new last name and assigns that to the person. JavaScript knows which person you're talking about by using "this.". So, now you can write: myMother.newlastname("Doe").
newlastname()函數(shù)定義了person的新last name并分配給了person。使用"this"的話JS會明白你在描述哪個person。所以現(xiàn)在你可以寫:myMother.newlastname("Doe") 

相關(guān)文章

  • 轉(zhuǎn)換字符串為json對象的方法詳解

    轉(zhuǎn)換字符串為json對象的方法詳解

    這篇文章主要介紹了轉(zhuǎn)換字符串為json對象的方法。需要的朋友可以過來參考下,希望對大家有所幫助
    2013-11-11
  • JavaScript數(shù)據(jù)類型詳解

    JavaScript數(shù)據(jù)類型詳解

    這篇文章主要介紹了JavaScript數(shù)據(jù)類型詳解,本文詳細講解了JavaScript中有5種基本數(shù)據(jù)類型:Undefined、Null、Boolean、Number和String,需要的朋友可以參考下
    2015-04-04
  • Javascript 賦值機制詳解

    Javascript 賦值機制詳解

    本文通過實例詳細介紹了javascript的賦值機制,是篇非常不錯的文章,這里推薦給小伙伴們。
    2014-11-11
  • JavaScript的目的分析

    JavaScript的目的分析

    JavaScript的目的分析...
    2007-01-01
  • js圖片預(yù)加載示例

    js圖片預(yù)加載示例

    這篇文章主要介紹了js圖片預(yù)加載示例,需要的朋友可以參考下
    2014-04-04
  • javascript 全等號運算符使用說明

    javascript 全等號運算符使用說明

    看到這樣一行代碼 if(typeof item === "string" ) ,看見有3個等號以前從沒這么寫過,可能是我的JS技術(shù)還處于初級的原因吧,我去網(wǎng)上查了一些資料網(wǎng)上說這是全等于符號
    2010-05-05
  • javascript中eval解析JSON字符串

    javascript中eval解析JSON字符串

    這篇文章主要介紹了javascript中eval解析JSON字符串時遇到的一個問題,簡單的說eval就相當(dāng)于一個js解析器,很牛哦
    2016-02-02
  • 老生常談onBlur事件與onfocus事件(js)

    老生常談onBlur事件與onfocus事件(js)

    下面小編就為大家?guī)硪黄仙U刼nBlur事件與onfocus事件(js)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2016-07-07
  • 在Javascript中 聲明時用"var"與不用"var"的區(qū)別

    在Javascript中 聲明時用"var"與不用"var"的區(qū)別

    Javascript聲明變量的時候,雖然用var關(guān)鍵字聲明和不用關(guān)鍵字聲明,很多時候運行并沒有問題,但是這兩種方式還是有區(qū)別的
    2013-04-04
  • js 編寫規(guī)范

    js 編寫規(guī)范

    js輸寫最好還是可以面向?qū)ο蠓绞?用類方向進行包裝 js輸寫兩種方式 閉包 原型
    2010-03-03

最新評論