jsp 如何调用用xml
<?xmlversion="1.0"encoding="GB2312"?><xsl:stylesheetxmlns:xsl="http://www.w3.org/1999...
<?xml version="1.0" encoding="GB2312"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="图片">
<img src="http://sd55.free.fr/photocast/images/002_00A.jpg"/>
</xsl:template>
</xsl:stylesheet>
这是我的xml,想显示图片,如何调用这个xml? 展开
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="图片">
<img src="http://sd55.free.fr/photocast/images/002_00A.jpg"/>
</xsl:template>
</xsl:stylesheet>
这是我的xml,想显示图片,如何调用这个xml? 展开
展开全部
放在一个数据岛中,如
<xml id="data">
<?xml version="1.0" encoding="GB2312"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="图片">
<img src="http://sd55.free.fr/photocast/images/002_00A.jpg"/>
</xsl:template>
</xsl:stylesheet>
</xml>
再定义一个方法
<script>
var xml=document.all.data.xml;
alert(xml);
</script>
<xml id="data">
<?xml version="1.0" encoding="GB2312"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="图片">
<img src="http://sd55.free.fr/photocast/images/002_00A.jpg"/>
</xsl:template>
</xsl:stylesheet>
</xml>
再定义一个方法
<script>
var xml=document.all.data.xml;
alert(xml);
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询