JavaScript의 setTimeout 메소드는 페이지 새로 고침, 실행 지연 등의 경우에 주로 사용됩니다. 하지만 아직까지 setTimeout 사용법을 잘 모르는 JavaScript 초보자들이 많습니다. JavaScript에서 setTimeout() 사용에 대한 자세한 설명!
setTimeout 사용
케이스를 함께 실행해 보겠습니다. 먼저 메모장을 열고 다음 코드를 붙여넣은 후 효과를 실행해 보세요.
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <h1> <font color=blue> haorooms博客示范网页 </font> </h1> <p> 请等三秒!</p> <script> setTimeout("alert('对不起, haorooms博客要你等候多时')", 3000 ) </script> </body> </html>
페이지에 3초 동안 머무르면 액자가 팝업됩니다! 이 경우는 가장 기본적인 setTimeout 구문을 사용하며 setTimeout은 자동으로 반복되지 않습니다!
setTimeout도 함수를 실행할 수 있고 반복해서 실행할 수 있습니다! 또 다른 경우를 함께 해보죠:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script> var x = 0 function countSecond() { x = x+1 document.haorooms.haoroomsinput.value=x setTimeout("countSecond()", 1000) } </script> </head> <html> <body> <form name="haorooms"> <input type="text" name="haoroomsinput"value="0" size=4 > </form> <script> countSecond() </script> </body> </html>
입력 텍스트 상자의 숫자가 1초마다 증가하는 것을 볼 수 있습니다! 따라서 setTimeout은 웹 페이지에서 시간 점프를 만들 수도 있습니다!
경우가 없고 학습이 빠르지 않을 것입니다. 하오룸의 특정 페이지에 머무르는 시간을 계산하는 또 다른 예를 함께 만들어 보겠습니다.
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script> x=0 y=-1 function countMin() { y=y+1 document.displayMin.displayBox.value=y setTimeout("countMin()",60000) } function countSec() { x = x + 1 z =x % 60 document.displaySec.displayBox.value=z setTimeout("countSec()", 1000) } </script> </head> <body> <table> <tr valign=top> <td> 你在haorooms博客中的停留时间是: </td> <td> <form name=displayMin> <input type=text name=displayBox value=0 size=4 > </form> </td> <td> 分 </td> <td> <form name=displaySec> </td> <td> <input type=text name=displayBox value=0 size=4 > </form> </td> <td> 秒。</td> </tr> </table> <script> countMin() countSec() </script> </body> </html>
위 예를 통해 setTimeout()의 사용법은 어떻습니까? 나는 당신을 믿습니다. 당신은 모든 것을 이해합니다!
요약:
위의 설명을 통해 setTimeout을 이해하셨는지 궁금합니다. 다음번에는 setTimeout을 사용하는 데 매우 능숙해 지실 텐데요!
관련 권장 사항:
javascript 함수 setTimeout의 사용 예에 대한 자세한 설명 매개변수
from setTimeout 이벤트 루프 모델에 대해 이야기해 봅시다
위 내용은 JavaScript에서 setTimeout() 사용에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!