BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function checkForm() { alert("提交表单"); } </script> </head> <body> <form action="demo_form.php" onsubmit="checkForm()"> 第一个名字: <input name="fname" type="text"><br> 最后一个名字: <input name="lname" type="text"><br> <input type="submit" value="提交"> </form> <p> checkForm() 函数在提交按钮被点击时触发。该函数会弹出消息。</p> </body> </html>
运行结果