关于 Firefox 上的 HTML5 新功能占位符
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该规范将 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.