DOM API 是否提供实现 Node 接口的 HTMLTitle 对象?
document.title 仅返回标题的字符串部分。
typeof(document.title)
"string"
而其他属性如document.head
is HTMLHeadElement
object 和document.doctype
is DocumentType
Object 都实现了 Node 接口。
DOM API 是否提供实现 Node 接口的 HTMLTitle 对象?
document.title 仅返回标题的字符串部分。
typeof(document.title)
"string"
而其他属性如document.head
is HTMLHeadElement
object 和document.doctype
is DocumentType
Object 都实现了 Node 接口。
document.title给你一个字符串,如前所述。
如果你想要标题元素,只需使用document.getElementsByTagName
var title = document.getElementsByTagName("title")[0]
document.title
表示当前文档的标题字符串。可以通过以下方式访问元素的接口:
var tit = document.createElement('title')
typeof
不是获取内部类名的正确方法。改用Object.prototype.toString
:
Object.prototype.toString.call(tit);
// returns "[object HTMLTitleElement]"