Giả sử chúng ta đang nhận được hai giá trị với lời nhắc -
var firstvalue = parseInt(prompt("Enter the value1")); var secondvalue = parseInt(prompt("Enter the value2"));
Ví dụ
Sau đây là mã -
<!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>
Để chạy chương trình trên, hãy lưu tên tệp anyName.html (index.html). Nhấp chuột phải vào tệp và chọn tùy chọn “Mở bằng Máy chủ Trực tiếp” trong trình chỉnh sửa Mã VS.
Kết quả như sau -
Nhập giá trị đầu tiên. Tôi sẽ nhập 10 -
Sau khi nhấp vào nút OK, bạn cần nhập giá trị thứ hai -
Nhập giá trị thứ hai. Tôi sẽ nhập 10 lần nữa.
Sau khi nhấp vào nút OK, bạn sẽ nhận được kết quả. Kết quả như sau -