我知道getElementById在IE中可以用,但不知道它在其他浏覽中可不可以用,比如:Firebox,Opera,Netscape
回答:
getElementById是標准的方法
理論上講支持w3c標准的都可以用 你列舉的三種較新版本都可以用
但古董級的浏覽器,還是不支持的,所以最好用本站用的方法,來實現
復制代碼 代碼如下:
function $(objectId) {
if(document.getElementById && document.getElementById(objectId)) {
// W3C DOM
return document.getElementById(objectId);
}
else if (document.all && document.all(objectId)) {
// MSIE 4 DOM
return document.all(objectId);
}
else if (document.layers && document.layers[objectId]) {
// NN 4 DOM.. note: this won't find nested layers
return document.layers[objectId];
}
else {
return false;
}
}