「XML DOM」replaceData()でテキストノードのデータを置換する
サンプルコード
xmlDoc=loadXMLDoc(“books.xml");
cft=xmlDoc.getElementsByTagName(“title")[0].childNodes[0];
cft.replaceData(0,8,"Easy");
document.write(cft.nodeValue);
結果:
Easy Italian
Coding Changes the World
サンプルコード
xmlDoc=loadXMLDoc(“books.xml");
cft=xmlDoc.getElementsByTagName(“title")[0].childNodes[0];
cft.replaceData(0,8,"Easy");
document.write(cft.nodeValue);
結果:
Easy Italian