我在xsl文档中使用JavaScript for循环如下:
var x=xmlDoc.getElementsByTagName("section");
for (i=0;i<x.length;i++)
{
alert((x[i].getElementsByTagName("SectionId").nodeValue));
alert((x[i].getElementsByTagName("SectionName").nodeValue));
}
但我不明白为什么会发生以下错误:
Element type "x.length" must be followed by either attribute specifications, ">" or "/>"
答案 0 :(得分:1)
无需添加<xsl:text disable...
。你可以尝试逃避“&lt;”带有<
的字符。