일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- Eclipse
- jQuery
- PLSQL
- MFC
- 선택적조인
- phonegap
- node.js
- Struts
- oracle
- WebLogic
- Android
- PHP
- appspresso
- MySQL
- 전자정부프레임워크
- swingx
- JDOM
- iBATIS
- GPS
- rowspan
- JSON
- tomcat
- ibsheet
- sencha touch
- dock
- Spring
- 가우스
- Google Map
- jsr 296
- Ajax
Archives
- Today
- Total
Where The Streets Have No Name
document.all 을 쓰지 맙시다! 본문
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;
}
}
// 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;
}
}