JavaScript DOM程式設計藝術讀後感(二)

2021-07-31 01:30:04 字數 1108 閱讀 5778

function

insertafter

(newelement,targetelement) else

}

8.ajax
function

getnewcontent

() };

request.send(null);

}else

}addloadevent(getnewcontent);

9.伺服器在向xmlhttprequest物件發回響應時,該物件有許多屬性可用,瀏覽器會再不同階段更新readystate屬性的值:

0表示未初始化

1表示正在載入

2表示載入完畢

3表示正在互動

4表示完成

10訪問伺服器傳送回來的資料要通過了兩個屬性完成,乙個是responsetext屬性,這個屬性用於儲存文字字串形式的資料。另乙個屬性是respon***ml屬性,用於儲存content-type頭部中指定位「text/xml」的資料,其實是乙個documentfragment物件。.

function addloadevent(func)  else 

}}function insertafter(newelement,targetelement) else

}function prepareplaceholder()

function preparegallery()

links[i].onkeypress = links[i].onclick;

}}function showpic(whichpic) else

var description = document.getelementbyid("description");

if (description.firstchild.nodetype == 3)

return

false;

}addloadevent(prepareplaceholder);

addloadevent(preparegallery);

javaScript DOM程式設計

1.獲取dom樹的根節點 2.getelementbyid 根據標籤的id獲取標籤元素和getelementsbytagname根據標籤名獲取標籤,返回的是陣列的形式 3.getelementsbynames 根據標籤的name屬性獲取標籤,返回的是陣列形式 有兩個input標籤,因此列印結果是2 ...

JavaScript DOM程式設計

dom document objective model 文字物件模型 例子 clickme 例子 先獲取某一指定的元素節點 再讀指定元素節點的屬性 設定指定元素節點的屬性的值 例子 你喜歡那個城市?你喜歡哪款單擊遊戲?name 先獲取某節點。用childnodes方法獲取指定元素節點的所有子節點。...

《JavaScript DOM程式設計藝術》筆記

標記良好的 就是一切!html js css dom方法和屬性 0 css dom 元素節點 1 與位置相關的屬性 firstchild lastchild nextsibling previoussibling parentnode childnodes 2 與本身有關屬性 nodetype no...