关于 Firefox 上的 HTML5 新功能占位符

发布于 2025-01-07 14:17:35 字数 304 浏览 0 评论 0原文

在 Firefox 上:

console.log(document.createElement('input').placeholder === ''); // true

console.log(document.createElement('input').hasOwnProperty('placeholder')); // false

我认为第二行代码应该返回 true 就像你在 Chrome 上看到的那样。但我得到错误。为什么?

谢谢你!

On Firefox:

console.log(document.createElement('input').placeholder === ''); // true

console.log(document.createElement('input').hasOwnProperty('placeholder')); // false

I think the 2nd line codes should return true just like what you can see on Chrome. But I get false. Why?

Thank you!

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

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

发布评论

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

评论(1

给我一枪 2025-01-14 14:17:35

该规范将 JS 属性定义为原型上的属性,而不是对象本身上的属性。 Chrome 对所有 DOM 属性都会出现此错误;这是 Chrome 中长期存在的错误。

The spec defines the JS property as being on the prototype, not on the object itself. Chrome gets this wrong for all DOM properties; it's a longstanding bug in Chrome.

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