菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂</title> </head> <body> <form action="demo_form_method_post.php" method="post" target="_blank"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="提交"> </form> <p>点击提交按钮,输入框数据将被发送到服务器上的“demo-form_method.php”页面。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net