프롬프트 −
로 두 개의 값을 얻는다고 가정해 보겠습니다.var firstvalue = parseInt(prompt("Enter the value1")); var secondvalue = parseInt(prompt("Enter the value2"));
예시
다음은 코드입니다 -
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> </body> <script> var firstvalue = parseInt(prompt("Enter the value1")); var secondvalue = parseInt(prompt("Enter the value2")); if (firstvalue * secondvalue > 50) document.write("<h1>Result is correct</h1>"); else document.write("<h1>Result is not correct</h1>"); </script> </html>
위의 프로그램을 실행하기 위해서는 파일명 anyName.html(index.html)로 저장합니다. 파일을 마우스 오른쪽 버튼으로 클릭하고 VS Code 편집기에서 "라이브 서버로 열기" 옵션을 선택합니다.
출력은 다음과 같습니다 -
첫 번째 값을 입력합니다. 10을 입력하겠습니다 −
확인 버튼을 클릭한 후 두 번째 값을 입력해야 합니다.
두 번째 값을 입력합니다. 다시 10을 입력하겠습니다.
확인 버튼을 클릭하면 결과가 나타납니다. 출력은 다음과 같습니다 -