1 . 創(chuàng)建對象的實例
下列代碼創(chuàng)建了一個對象的實例, 并向其添加了四個屬性:
personObj =new Obj ect()
personObj . firstname="John"
personObj . lastname="Doe"
personObj . age=50
personObj . eyecolor="blue"
向 personObj 添加方法也很簡單。 下列代碼向 personObj 添加了名為 eat() 的方法:
personObj . eat=eat
2. 創(chuàng)建對象的模版
模版定義了對象的結(jié)構(gòu)。
function person(firstname, lastname, age, eyecolor)
{
this. firstname=firstname
this. lastname=lastname
this. age=age
this. eyecolor=eyecolor
}
2、 Ajax 原理
答: AJAX = 異步 JavaScript 和 XML。
AJAX 是一種用于創(chuàng)建快速動態(tài)網(wǎng)頁的技術(shù)。
通過在后臺與服務(wù)器進行少量數(shù)據(jù)交換, AJAX 可以使網(wǎng)頁實現(xiàn)異步更新。 這意
味著可以在不重新加載整個網(wǎng)頁的情況下, 對網(wǎng)頁的某部分進行更新。
AJAX 的原理簡單來說通過 XmlHttpRequest 對象來向服務(wù)器發(fā)異步請求, 從服務(wù)器獲得數(shù)
據(jù), 然后用 Javascript 來操作 DOM 而更新頁面。