我想學習JavaScript對象,我花時間在互聯網上並瞭解JavaScript對象,並且我很困惑什麼是對象的使用以及如何在JavaScript中構建自己的對象。我也看到了一些他們使用自己的自定義對象的JavaScript函數。例如,我有一些代碼。什麼是javascript中的對象
var animationSections = {
'intro': 0,
'over': 200,
'around': 1600,
'through': 3500,
'share': 5000
};
我複製上面給出的代碼從一個JavaScript文件是用於動畫和他們使用該對象。
startAt: 0+animationSections.over
現在我的問題上來了,爲什麼我們使用animationSections.over而我們可以用「200」
我是新來的JavaScript,你可以看到,我問很多問題,在這裏,我得到這個網站的反應就像是老師,我和遺憾關於我的英語我不擅長我的英語。 – Carlos 2012-04-19 04:29:11
你可能想看看面向對象編程(http://en.wikipedia.org/wiki/Object-oriented_programming)是什麼。 JavaScript是基於原型的(http://en.wikipedia.org/wiki/Prototype-based_programming),面向對象的語言。 – Joseph 2012-04-19 04:32:09