小码哥的IT人生

XML DOM systemId 属性

XML基础 2023-08-13 13:12:01小码哥的IT人生shichen

XML DOM systemId 属性

定义和用法

systemId 属性可返回外部 DTD 的系统标识符。

语法:

documentObject.doctype.systemId

实例

在所有的例子中,我们将使用 XML 文件 note_external_dtd.xml,以及 JavaScript 函数 loadXMLDoc()

以下代码片段可显示与 XML 文档相关联的外部 DTD 的系统 id:

xmlDoc=loadXMLDoc("note_external_dtd.xml");
document.write(xmlDoc.doctype.systemId);

输出:

note.dtd

DIY

完整实例【取得 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_external_dtd.xml");
document.write(xmlDoc.doctype.systemId);
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024