<input onclick="alert('我是警告框')" type="button" value="点击我,弹出警告框" />
<body> <input onclick="myAlert()" type="button" value="点击我,弹出警告框" /> </body> <script> function myAlert(){ alert("我是警告框"); } </script>