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

XML DOM data 屬性


Comment 對象參考手冊 Comment 對象

定義和用法

data 屬性設(shè)置或返回注釋的文本。

語法

commentNode.data

實(shí)例

實(shí)例

xmlDoc=loadXMLDoc("books_comment.xml");

x=xmlDoc.getElementsByTagName("book")[0].childNodes;

for (i=0;i<x.length;i++)
{
if (x[i].nodeType==8)
{
//Process only comment nodes
document.write(x[i].data);
document.write("
");
}
}

上面的代碼將輸出:

125 Simple and Delicious Recipes (Hardcover)

運(yùn)行代碼 ?

在上面的實(shí)例中,我們使用一段循環(huán)和 if 語句來執(zhí)行只針對 comment 節(jié)點(diǎn)的處理。comment 節(jié)點(diǎn)的節(jié)點(diǎn)類型是 8。


Comment 對象參考手冊 Comment 對象其他擴(kuò)展