친구, 내가 확인하려면 사용 나는 파이어 폭스 v23.0.1는 HTMLElement의 hasOwnProperty
(입력, button..etc) 작동하지 않습니다에 주목hasOwnProperty는 HTMLElement 파이어 폭스
,
button1.hasOwnProperty('id') = false
:
var str1 = '';
for (pp in button1) {
if (button1.hasOwnProperty(pp)) {
str1 += (',' + pp);
}
}
alert(str1);//nothing here
그러나 크롬 hasOwnProperty는 잘 작동합니다.
버그입니까?
테스트 좀 더 광범위하고 DOM은 객체에 * * hasOwnProperty를 지원하지 않으며 상속의 어떤 종류를 구현합니까 사용중인 브라우저를 찾을 수 있습니다. – RobG