当你应该使用document.all与document.getElementById?
document.all
document.getElementById
document.all 是W3C标准的专有Microsoft扩展。
getElementById() 是标准的-使用它。
getElementById()
但是,请考虑使用像jQuery这样的js库是否会派上用场。例如,$("#id")相当于的jQuery getElementById()。另外,您不仅可以使用CSS3选择器。
$("#id")