페이지 로딩 메시지 표시
페이지 정보
작성자 MintState 댓글 0건 조회 12,425회 작성일 08-10-29 20:56본문
페이지 로딩 메시지 표시
html이 익스플러에 완전히 로딩 되기까지 보여줄 메시지를 표시 합니다.
html이 익스플러에 완전히 로딩 되기까지 보여줄 메시지를 표시 합니다.
<div ID='lodingMsgDiv' style='position:absolute; overflow:hidden; border:0px; z-index:1;height=100%'> <table width='100%' height='80%' border='0' cellpadding='0' cellspacing='0'> <tr> <td align='center'><img src="로딩 이미지"></td> </tr> </table> </div> <SCRIPT LANGUAGE='JavaScript'> document.onreadystatechange = fnStartInit; function fnStartInit() { if (document.readyState=='complete') { if (document.all['lodingMsgDiv']) { document.all['lodingMsgDiv'].style.visibility = 'hidden'; } } } </SCRIPT>
|
댓글목록
등록된 댓글이 없습니다.