欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

前端表单提交方式代码实例

程序员文章站 2022-09-24 13:18:59
前端表单提交方式代码实例 ...

前端表单提交方式代码实例

<!doctype html>  
<html lang="en">  
<head>  
    <meta charset="utf-8">  
    <title>表单提交方式</title>  
</head>  
<body>  
    <form action="https://www.baidu.com" method="post">  
          
        用户名:<input type="text" name="username">  
  
        密码: <input type="password" name="password" >  
  
        <input type="submit" >  
  
        <br>  
  
    </form>  
      
</body>  
</html>