Computer >> Máy Tính >  >> Lập trình >> Javascript

Hộp thoại JavaScript

JavaScript hỗ trợ ba loại hộp thoại quan trọng. Các hộp thoại này có thể được sử dụng để nâng cao và cảnh báo, hoặc để xác nhận bất kỳ đầu vào nào hoặc để có một loại đầu vào từ người dùng. Ở đây chúng ta sẽ thảo luận về từng hộp thoại một.

Sau đây là các hộp thoại JavaScript triển khai mã -

Ví dụ

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sample {
   font-size: 18px;
   font-weight: 500;
}
</style>
</head>
<body>
<h1>Dialogue boxes</h1>
<div class="sample"></div>
<button class="alert">ALERT BOX</button>
<button class="confirm">CONFIRM BOX</button>
<button class="prompt">PROMPT BOX</button>
<h3>
Click on the above button to see their dialogue box
</h3>
<script>
let fillEle = document.querySelector(".sample");
document.querySelector('.alert').addEventListener('click',()=>{
   alert('Hello World');
});
document.querySelector('.confirm').addEventListener('click',()=>{
   confirm('Are you sure?');
});
document.querySelector('.prompt').addEventListener('click',()=>{
   prompt('Enter your name');
})
</script>
</body>
</html>

Đầu ra

Hộp thoại JavaScript

Khi nhấp vào nút “HỘP CẢNH BÁO” -

Hộp thoại JavaScript

Khi nhấp vào nút “XÁC NHẬN HỘP” -

Hộp thoại JavaScript

Khi nhấp vào nút “HỘP KHUYẾN MÃI” -

Hộp thoại JavaScript