Where The Streets Have No Name

document.all 을 쓰지 맙시다! 본문

Developement/Web

document.all 을 쓰지 맙시다!

highheat 2006. 4. 1. 01:44
function getObject(objectId) {
// checkW3C DOM, then MSIE 4, then NN 4.
//
if(document.getElementById && document.getElementById(objectId)) {
return document.getElementById(objectId);
}
else if (document.all && document.all(objectId)) {
return document.all(objectId);
}
else if (document.layers && document.layers[objectId]) {
return document.layers[objectId];
} else {
return false;
}
}