- XML DOM 基础
- XML DOM - 首页
- XML DOM - 概览
- XML DOM - 模型
- XML DOM - 节点
- XML DOM - 节点树
- XML DOM - 方法
- XML DOM - 加载
- XML DOM - 遍历
- XML DOM - 导航
- XML DOM - 访问
- XML DOM 操作
- XML DOM - 获取节点
- XML DOM - 设置节点
- XML DOM - 创建节点
- XML DOM - 添加节点
- XML DOM - 替换节点
- XML DOM - 移出节点
- XML DOM - 克隆节点
- XML DOM 对象
- DOM - Node 对象
- DOM - NodeList 对象
- DOM - NamedNodeMap 对象
- DOM - DOMImplementation
- DOM - DocumentType 对象
- DOM - ProcessingInstruction
- DOM - Entity 对象
- DOM - EntityReference 对象
- DOM - Notation 对象
- DOM - Element 对象
- DOM - Attribute 对象
- DOM - CDATASection 对象
- DOM - Comment 对象
- DOM - XMLHttpRequest 对象
- DOM - DOMException 对象
- XML DOM 有用资源
- XML DOM - 简明指南
- XML DOM - 有用资源
- XML DOM - 讨论
DOM - Notation 对象属性 - systemId
Notation 的系统标识符,如果没有指定系统标识符,则为 null。
语法
以下是使用 systemId 属性的语法。
var sysid = document.doctype.systemId;
示例
notation_xhtml.xml 内容如下 −
<?xml version = "1.0" encoding = "UTF-8" standalone = "no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <address> <name>Tanmay Patil</name > <company>TutorialsPoint</company> <phone>(011) 123-4567</phone> </address>
以下是 systemId 属性用法示例 −
<!DOCTYPE html> <html> <head> <script> function loadXMLDoc(filename) { if (window.XMLHttpRequest) { xhttp = new XMLHttpRequest(); } else // code for IE5 and IE6 { xhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xhttp.open("GET",filename,false); xhttp.send(); return xhttp.responseXML; } </script> </head> <body> <script> xmlDoc = loadXMLDoc("/dom/notation_xhtml.xml"); document.write("The systemId asscoiated with the notation is:"+ xmlDoc.doctype.systemId); </script> </body> </html>
执行
将此文件作为 notationattribute_systemsid.html 保存到服务器路径(此文件和 notation.xml 应位于服务器上的同一路径中)。我们会得到如下输出 −
The systemId asscoiated with the notation is:http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd
dom_notation_object.htm
广告