復制代碼 代碼如下:
function $(id){return document.getElementById(id);
上面的對於新版本的浏覽器都是沒有問題的,如果使用古老的浏覽器,可以使用下面的函數
復制代碼 代碼如下:
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;
}
}
來實現$代替document.getElementById的效果,雖然簡單,但對於沒有引用了prototype和jquery等框架的,避免了每次寫document.getElementById,只需在一個公共JavaScript文件定義後便可處處使用了。