警告(alert 消息对话框)
任务
在右边编辑器的第9行补充代码,使用alert,通过消息框输出变量mychar内容,点击按钮后弹出该对话框。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>alert</title> <script type="text/javascript"> function rec(){ var mychar="I love JavaScript"; alert(mychar); alert("80"); } </script> </head> <body> <input name="button" type="button" onClick="rec()" value="点击我,弹出对话框" /> </body> </html>