XML DOM entities 属性
XML基础 2023-08-13 13:08:12小码哥的IT人生shichen
XML DOM entities 属性
定义和用法
entities 属性可返回包含有在 DTD 中所声明的外部实体和内部实体的 NamedNodeMap。
语法:
documentObject.doctype.entities
实例
在所有的例子中,我们将使用 XML 文件 note_internal_dtd.xml,以及 JavaScript 函数 loadXMLDoc()。
以下代码片段可显示在 DTD 中声明过的实体的节点名称和节点类型:
xmlDoc=loadXMLDoc("note_internal_dtd.xml");
var x=xmlDoc.doctype.entities
for (i=0;i<x.length;i++)
{
document.write("Nodename: " + x.item(i).nodeName);
document.write("<br />")
document.write("Nodetype: " + x.item(i).nodeType);
document.write("<br />")
}
输出:
Nodename: writer
Nodetype: 6
Nodename: copyright
Nodetype: 6
TIY
完整实例【取得在 XML 文档的 DTD 中声明过的实体】:
<html>
<head>
<script type="text/javascript" src="/demo/example/xdom/loadxmldoc.js">
</script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/demo/example/xdom/note_internal_dtd.xml");
var x=xmlDoc.doctype.entities;
for (i=0;i<x.length;i++)
{
document.write("Nodename: " + x.item(i).nodeName);
document.write("<br />");
document.write("Nodetype: " + x.item(i).nodeType);
document.write("<br />");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html