BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function greeting(){ alert("Welcome " + document.forms["frm1"]["fname"].value + "!") } </script> </head> <body> 你的名字是:<br> <form action="tryjsref_form_onsubmit.htm" name="frm1" onsubmit="greeting()"> <input name="fname" type="text"> <input type="submit" value="提交"> </form> </body> </html>
运行结果