最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JS 對(duì)象介紹

 更新時(shí)間:2010年01月20日 00:58:42   作者:  
JS 對(duì)象介紹,需要的朋友可以參考下。

JavaScript is an Object Oriented Programming (OOP) language.
JS是面向?qū)ο蟮木幊陶Z(yǔ)言(面向?qū)ο螅?(這里是基于對(duì)象還是面向?qū)ο蟠蠹铱梢运阉飨拢?BR>An OOP language allows you to define your own objects and make your own variable types.
OOP語(yǔ)言可以讓你自定義對(duì)象和變量類型。

--------------------------------------------------------------------------------
Object Oriented Programming
被安置對(duì)象的編程
JavaScript is an Object Oriented Programming (OOP) language. An OOP language allows you to define your own objects and make your own variable types.
JS是(OOP)語(yǔ)言,這就可以讓你定義....(和上面的重復(fù))
However, creating your own objects will be explained later, in the Advanced JavaScript section. We will start by looking at the built-in JavaScript objects, and how they are used. The next pages will explain each built-in JavaScript object in detail.
然而,我們將晚些在高級(jí)JS里介紹建立自定義對(duì)象。我們將開(kāi)始觀察內(nèi)建JS對(duì)象和如何使用它們。下頁(yè)將詳細(xì)介紹每個(gè)內(nèi)建JS對(duì)象
Note that an object is just a special kind of data. An object has properties and methods.
注意,對(duì)象只是特殊類型的數(shù)據(jù)。對(duì)象有屬性和方法

--------------------------------------------------------------------------------
Properties
屬性
Properties are the values associated with an object.
屬性是對(duì)象的相連值
In the following example we are using the length property of the String object to return the number of characters in a string:
下面的例子我么使用了字符串對(duì)象的長(zhǎng)度屬性來(lái)返回字符的數(shù)量:
<script type="text/javascript">
var txt="Hello World!"
document.write(txt.length)
</script>
The output of the code above will be:
上面的代碼就會(huì)輸出:
12

--------------------------------------------------------------------------------
Methods
方法
Methods are the actions that can be performed on objects.
對(duì)象的方法可以執(zhí)行行為。
In the following example we are using the toUpperCase() method of the String object to display a text in uppercase letters:
下面的例子使用了字符串對(duì)象的toUpperCase()方法來(lái)顯示出文字的大寫(xiě):
<script type="text/javascript">
var str="Hello world!"
document.write(str.toUpperCase())
</script>
The output of the code above will be:
上面的代碼輸出:
HELLO WORLD!

相關(guān)文章

最新評(píng)論

海宁市| 宝兴县| 海兴县| 沾益县| 宁安市| 石楼县| 乐安县| 庄河市| 梅河口市| 凤山市| 永嘉县| 新野县| 松潘县| 平舆县| 蕲春县| 宣恩县| 长岛县| 西丰县| 错那县| 南通市| 竹北市| 韩城市| 云霄县| 华宁县| 博野县| 乐陵市| 嘉荫县| 岳阳市| 周宁县| 昌江| 江孜县| 土默特右旗| 土默特左旗| 冕宁县| 崇文区| 寿光市| 福泉市| 邯郸县| 龙岩市| 余江县| 合水县|