getElementById是不是多余的啊?
的有关信息介绍如下:函数 getElementById(..) 扩号中可以是变量,当需要用不同变量来调用时就需要它了。
你的情况是常量,当然不用它也可以啦。
变量的例子:
function doClickText(who,type,step,timeOut) {
document.getElementById(who).style.display="none";
if(type==0) {
reveal('revealDiv1',step,timeOut,0);
reveal('revealDiv2',step,timeOut,1);
}
if(type==1) { 。。。。。}
}
当别的函数或循环调用doClickText(),who 是变量,指向不同的。用getElementById(who)就能灵活地找到目标物。
这时,getElementById不是多余的。