我想在我的网站上显示来自Feedburner的RSS源,但是我也希望能够将XSLT应用到它。
是否可以在XSLT中获取URL而不是将链接添加到XML中的样式?
答案 0 :(得分:1)
您可以使用document函数在样式表中加载外部xml文件。
(评论后编辑)
<xsl:template match="/">
<xsl:apply-templates select="document("myurl.xml")/root" mode="extern"/>
</xsl:template>
<xsl:template match="root" mode="extern">
Hello world
</xsl:template>