在xsl文件的javascript里面var arrValue;
// 遍历xml文件给arrValue赋值
<xsl:for-each select="/hang">
i ++;
<xsl:for-each select="/lie">
j ++;
arrValue[i][j] =<xsl:value-of select="@value" />;
</xsl:for-each>
</xsl:for-each>