4
由於document.body的VS Document.prototype.body
document.__proto__.__proto__===Document.prototype
返回true,因爲
Document.prototype.hasOwnProperty('body')
也返回true
可能有人向我解釋爲什麼document.body的和Document.prototype.body是不是一回事?此外,爲什麼Document.prototype.body內Chrome開發者工具的結果
Uncaught TypeError: Illegal invocation(…)
(anonymous function) @ VM6098:2
InjectedScript._evaluateOn @ VM3911:904
InjectedScript._evaluateAndWrap @ VM3911:837
InjectedScript.evaluate @ VM3911:693
而document.body的結果
<body...>...</body>