利用DOM存取XML文件

来源:爱站网时间:2022-08-24编辑:网友分享
本文主要给大家分享下利用DOM存取XML文件的相关内容,本文具有一定的参考价值,对这方面比较感兴趣的小伙伴可以随时来看一看爱站技术频道小编所整理的资料。

要利用DOM 来存取XML 文件,你必须将XML 文件连结到HTML 网页上。

示例代码

1. test.xml

<?xml version="1.0" encoding="gb2312"?>
<?xml-stylesheet href="test.xsl" type="text/xsl"?>
<entry>
<title>entry with images</title>
<date>August 09, 2003</date>
<author>Kevin</author>
<idnum>000033</idnum>
<permalink>http://alazanto.org/xml/archives/000033.xml</permalink>
<body xmlns:html="http://www.w3.org/1999/xhtml"><![CDATA[]]></more>
<comment-link>http://alazanto.org/xml/archives/000033_comments.xml</comment-link>
<comment-count>6</comment-count>
</entry>

2. test.xsl

<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="/entry">
<html>
<head>
</head>
<body>
<xsl:value-of select="title" />
<xsl:value-of select="body" disable-output-escaping="yes"/>

</body>
</html>
</xsl:template>
</xsl:stylesheet>


关键之外在于使用的命名空间xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 和输出时加上disable-output-escaping="yes"

利用DOM存取XML文件的相关资料不知道小伙伴们都了解清楚了没有,在我们爱站技术频道网站有很多精彩的技术文章,喜欢不妨来关注收藏吧!

上一篇:UTF8转GB2312出现乱码如何解决

下一篇:用js实现生成xml对象

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载