中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

XML DOM createElement() 方法


Document 對(duì)象參考手冊(cè) Document 對(duì)象

定義和用法

createElement() 方法創(chuàng)建元素節(jié)點(diǎn)。

該方法返回 Element 對(duì)象。

語(yǔ)法

createElement(name)
參數(shù) 描述
name 字符串,這個(gè)字符串為元素節(jié)點(diǎn)規(guī)定名稱。

實(shí)例

實(shí)例

xmlDoc=loadXMLDoc("books.xml"); x=xmlDoc.getElementsByTagName("book"); for (i=0;i<x.length;i++) { newel=xmlDoc.createElement("edition"); newtext=xmlDoc.createTextNode("first"); newel.appendChild(newtext); x[i].appendChild(newel); } // 輸出所有 title 和 edition y=xmlDoc.getElementsByTagName("title"); z=xmlDoc.getElementsByTagName("edition"); for (i=0;i<y.length;i++) { document.write(y[i].childNodes[0].nodeValue); document.write(" - Edition: "); document.write(z[i].childNodes[0].nodeValue); document.write("<br>"); }

運(yùn)行代碼 ?

Document 對(duì)象參考手冊(cè) Document 對(duì)象其他擴(kuò)展