朋友们,
我在 Firefox v23.0.1 中注意到hasOwnProperty
HTMLElement(input,button..etc) 不起作用,
button1.hasOwnProperty('id') = false
我使用 for in 检查:
var str1 = '';
for (pp in button1) {
if (button1.hasOwnProperty(pp)) {
str1 += (',' + pp);
}
}
alert(str1);//nothing here
但在 chrome hasOwnProperty 中效果很好。
你知道这是一个错误吗?