DOM - Attributo oggetto notazione - systemId
L'identificatore di sistema di una notazione o null se non viene specificato alcun identificatore di sistema.
Sintassi
Di seguito è riportata la sintassi per l'utilizzo dell'attributo systemId .
var sysid = document.doctype.systemId;
Esempio
i contenuti di notation_xhtml.xml sono i seguenti:
<?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>
L'esempio seguente dimostra l'utilizzo dell'attributo 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>
Esecuzione
Salva questo file come notationattribute_systemsid.html nel percorso del server (questo file e notation.xml dovrebbero trovarsi sullo stesso percorso nel tuo server). Otterremo l'output come mostrato di seguito -
The systemId asscoiated with the notation is:http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd