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

时间:2012-02-22 10:40:46

标签: html5 firefox placeholder fallback

在Firefox上:

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

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

我认为第二行代码应该返回true,就像您在Chrome上看到的一样。但我得到false。为什么呢?

谢谢!

1 个答案:

答案 0 :(得分:1)

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