HTML DOM updateInterval 속성

정의와 사용법

updateInterval 속성은 화면의 업데이트 빈도를 설정하거나 반환할 수 있습니다.

문법

screen.updateInterval=number

예제

<html>
<body>
<script type="text/javascript">
document.write("<p>Update Interval: ")
document.write(screen.updateInterval + "</p>")
</script>
</body>
</html>