[JavaScript] var getDom=document.getElementById;사용 할 수 없다

375 단어
원인: getDom('button1'), 함수 중의 thiswindow 대상 이 아니 라 document 대상 을 가리킨다.
해결 (두 가지 방안 모두 가능): (1)
var getDom=document.getElementById.bind(document); 
getDom('button1');

(2)
var getDom=document.getElementById;
getDom.call(document,'button1');

좋은 웹페이지 즐겨찾기