📅  最后修改于: 2023-12-03 15:15:33.827000             🧑  作者: Mango
HTML DOM 文档 contentType 属性,返回当前文档的 MIME 类型。
document.contentType
返回当前文档的 MIME 类型,如text/html
、application/xml
、text/plain
等。
console.log(document.contentType); // "text/html"
以下 MIME 类型被所有主流浏览器所支持:
HTML DOM 文档 contentType 属性返回当前文档的 MIME 类型。开发者可以使用该属性来检查文档类型,以便进行相应的操作。