为什么对话框出不来?求解答,谢谢
<!doctype html> <html> <head> <meta http-equiv="Content-Type" content="text/html";charest="gb2312"/> <title>函数调用</title> <script type="javascript"> function add() { alert("飘过"); } </script> </head> <body> <form> <input type="button" value="戳我" onclick="add()"/> </form> </body> </html>