location是窗口和文档的拥有属性.
window.hasOwnProperty("location")
true
document.hasOwnProperty("location")
true
但是,当我尝试将Location的原型与Location.prototype进行比较时,我得到的错误是Location未定义.
虽然我可以在Location对象中看到Location构造函数.
位置的原型对象是什么?
理想情况下,我们应该能够看到Location.prototype和方法,如assign和其他两个.
Chrome bug?
最佳答案
原型可能不可见,即使它已列出.
原文链接:https://www.f2er.com/js/429686.html试试这个 :
var a = (function(){ // this is a closure protecting A
var A = function(b){
this.b = b;
}
return new A('test');
})();
console.log(a); // logs ▸A
console.log(A); // error,as A isn't defined
浏览器没有理由使位置可见.当然没有理由让它混乱全局命名空间.