Search

_0502_timeout2

대분류
STEP05 비동기
소분류
비동기

영상

개념

<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <p>버튼을 누르면 3초 후에 경고 박스가 화면에 표시됩니다. </p> <button onclick="showAlert()">눌러보세요</button> <script> function showAlert() { setTimeout(popup, 3000); } function popup(){ alert("setTimeout()을 사용하여 표시됩니다."); } </script> </body> </html>
Java
복사