JavaScript:toString

发布于 2024-09-18 10:23:10 字数 356 浏览 2 评论 0原文

为什么Object.prototype.toString === toString?如果我在全局范围内有这个:

var toStringValue = toString.call("foobaz");

我希望 toStringValuewindow.toString 的值,因为 window 是默认范围,对吧?为什么 toString 本身解析为 Object.prototype.toString 而不是 window.toString

How come Object.prototype.toString === toString? If I have this in the global scope:

var toStringValue = toString.call("foobaz");

I would expect toStringValue to be the value of window.toString because window is the default scope, right? How come toString by itself resolves to Object.prototype.toString instead of window.toString?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半边脸i 2024-09-25 10:23:10

您将获得的结果将取决于主机环境。如果我运行这个:

alert(toString === window.toString);
alert(toString === Object.prototype.toString);​

...在 Chrome 上我分别得到 truefalse;在 Firefox 上,我得到 falsefalse。 IE 给出 truefalse but 见下文。

浏览器上的窗口对象有点棘手,因为它是一个主机对象,如果主机对象愿意,它们可以做一些奇怪的事情。 :-) 例如,您的 toString.call("foobaz") 在 IE 上将失败,因为 windowtoString 不是真正的JavaScript 函数,没有 callapply。 (我并不是说这样做是正确的,你明白......)

The results you'll get will be dependent on the host environment. If I run this:

alert(toString === window.toString);
alert(toString === Object.prototype.toString);​

...on Chrome I get true and false, respectively; on Firefox I get false and false. IE gives true and false but see below.

The window object on browsers is a bit tricky, because it's a host object, and host objects can do strange things if they want to. :-) For instance, your toString.call("foobaz") will fail on IE, because the toString of window is not a real JavaScript function and doesn't have call or apply. (I'm not saying it's right to be that way, you understand...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文