alert JavaScript สวยๆ ด้วย sweetalert2 plugin บทความนี้แนะนำ JavaScript plugin ชื่อ sweetalert2 รองรับการสร้าง alert ที่สวยงาม มีความยืดหยุ่น และรองรับการแสดงผลบนทุกอุปกรณ์ สามารถเรียกใข้งานได้ดังนี้
ตัวอย่าง alert JavaScript สวยๆ ด้วย sweetalert2 plugin
1. ติดตั้ง sweetalert2 ผ่าน CDN
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
2. เรียกใช้งาน alert ของ sweetalert2 ด้วยคำสั่ง Swal.fire พร้อมกำหนดค่าข้อมูลต่างๆ ตามที่ต้องการ
<script>
Swal.fire({
title: 'ยินดีต้อนรับ',
text: 'เข้าสู่เว็บไซต์ Devdit',
icon: 'success',
confirmButtonText: 'ยอดเยี่ยมเลย'
});
</script>