JS 대화상자 (prompt)

2021. 7. 15. 21:59
728x90

-

 

처음 실행
데이터 입력
결과 
<!DOCTYPE html>
<html>
<head>
  <meta charset='utf-8'>
  <meta http-equiv='X-UA-Compatible' content='IE=edge'>
  <title>Prompt</title>
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <script>
    var str = prompt("데이터 입력","입력할 공간");
    document.write(str + 100);
  </script>
</head>
<body>
</body>
</html>
 
cs
728x90

BELATED ARTICLES

more