HTML
alert(message) 用來跳出提示 (警告) 對話視窗。 話視窗內警告文字換行要用 \n Try it
<button onclick="myFunction()">Try it</button> <script> function myFunction() { alert("Hello! I am an alert box!"); } </script>