1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display the doctype name of the document.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> In Internet Explorer 8 and earlier, the doctype property returns <em>null</em> for HTML and XHTML documents, and will only work for XML documents.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.doctype.name;
console.assert(x === 'html', 'html');
}
console.error('document.doctype.html');
myFunction();
console.exit();
</script>
</body>
</html>
|