HTML DOM 문서 유형 속성


html dom doctype attribute

instance

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<p id="demo">单击按钮来显示文档类型名称。</p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction(){
	var x=document.getElementById("demo");
	x.innerHTML=document.doctype.name;
}
</script>
<p><strong>注意:</strong>在IE 8和更早的版本,对于HTML和XHTML文档doctype属性返回<em>null</em> ,只在XML文档下工作。</p>

</body>
</html>

run 예제»


rrrreee

run 예제»

rrreeerun 예제»


QQ截图20161108165429.png rrrreee

run 예제»

rrreeerun example을 클릭하여 온라인 예제를 보려면 "run example"버튼을 클릭하십시오. doctype 속성은 문서를 반환합니다. 문서 유형 선언(Document Type Declaration)과 관련됩니다.


문서 유형 개체 참조 매뉴얼에서 문서 유형 개체에 대해 자세히 알아보세요.

참고:
문서가 문서 유형을 지정하지 않으면 반환 값은
null
입니다.

브라우저 지원참고: nullSyntax
모든 주요 브라우저는 doctype 속성을 지원합니다
Internet Explorer 8 및 IE 이전 버전에서는 HTML 및 XHTML 문서를 표시할 때 을 반환하지만 XML 문서는 지원합니다.


document.doctype


기술적 세부정보
🎜🎜🎜🎜반환 값: 🎜🎜문서의 문서 유형(DocumentType 개체). 🎜🎜🎜🎜DOM 버전🎜🎜Core Level 1 Document Object🎜🎜🎜🎜🎜🎜🎜🎜🎜🎜