location 是 window 和 document 的所有属性。
window.hasOwnProperty("location")
true
document.hasOwnProperty("location")
true
但是当我尝试将位置原型与 Location.prototype 进行比较时,我得到了位置未定义的错误。
虽然我可以在 Location 对象中看到 Location 构造函数。
定位的原型对象是什么?
理想情况下,我们应该能够看到 Location.prototype 及其上的方法,例如 assign 和其他两个。
铬错误?