아래 <html>... 부터 ...</html> 까지를 reload.html 로 저장해서 사용합니다.
--------------------------------------------------------------------------
<html>
<head>
<title>
일정 시간 특정 페이지 반복 로딩 소스 - http://jungbomadang.pe.kr
</title>
</head>
<body bgcolor=white leftmargin=0 topmargin=0 oncontextmenu="return false" ondragstart="return false" onselectstart="return false" >
<iframe name='viewRadio' src='http://jungbomadang.pe.kr' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' width='900' height='120'></iframe>
<br><br>
<center>
<font size=2 color=gray>
<a href="reload.html" target=_self>새로 고침</a>
<a href=javascript:// onclick="top.parent.window.close()">닫기</a>
</ont>
</center>
<br>
<script language="javascript">
window.setTimeout('window.location.reload()',10000); //60초마다 리플리쉬 시킨다 1000이 1초가 된다.
</script>
</body>
</html>
----------------------------------------------------------------------------
[출처 : 내 머리속으로 부터...]
설명)
http://jungbomadang.pe.kr : 갱신을 원하는 주소를 입력합니다.
900 : 로딩될 페이지 사이즈(가로)를 입력합니다. - 단위 : 픽셀
120 : 로딩될 페이지 사이즈(세로)를 입력합니다. - 단위 : 픽셀
10000 : 갱신될 시간을 입력합니다. 1000이 1초므로 10000이면 10초마다 갱신이 됩니다.
'IT > 컴퓨터' 카테고리의 다른 글
view-source 에 대하여 (0) | 2021.12.13 |
---|---|
자동 문서(파일) 백업 배치파일 (0) | 2021.12.13 |
티스토리 구글 애드센스 정산 계좌 작성 방법 - 우체국예금 (2021-12-10) (0) | 2021.12.10 |
티스토리 tistory html 링크 색상 변경 및 언더바 제거 방법 (2021-11-26) (0) | 2021.11.26 |
엑셀 복사 따옴표 " 제거 방법 (2021-11-26) (0) | 2021.11.26 |