原因: getDom('button1')
,函数中的this
会指向window
对象,而不是document
对象
解决(两种方案都可以):
(1)
var getDom=document.getElementById.bind(document);
getDom('button1');
(2)
var getDom=document.getElementById;
getDom.call(document,'button1');
原因: getDom('button1')
,函数中的this
会指向window
对象,而不是document
对象
解决(两种方案都可以):
(1)
var getDom=document.getElementById.bind(document);
getDom('button1');
(2)
var getDom=document.getElementById;
getDom.call(document,'button1');