Để gọi một hàm JavaScript trong hộp cảnh báo, bạn có thể thử chạy mã sau -
Ví dụ
<!DOCTYPE html> <html> <body> <script> function myFunction(warning) { alert(warning); catchedAlert(); } function catchedAlert() { alert('Alert called!'); } </script> <button onclick="myFunction('This is an alert box!')">Click me!</button> </body> </html>