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

html input 使用(代码实例)

程序员文章站 2022-09-21 19:31:38
html input 使用(代码实例)

html input 使用(代码实例)

<body>
 <form action="https://127.0.0.1:8888/index" method="GET">     <!-- GET 是值在url处进行连接 -->  <!--POST 直接发给后台 不在url 处连接 -->
   <p>zhao&nbsp;long</p>
   <p>
    <input type="text" name="user"/>
    <input type="text" name="email"/>
    <input type="password" name="pwd" />
    
    <input type="button" value="login"/>
    <input type="submit" value="submit"/>
   
   </p>
 </form>
 <br/>
 <h1>learn</h1>
 <p>
    <input type="text" name="user"/>
    <input type="text" name="email"/>
    <input type="password" name="pwd" />
    
    <input type="button" value="login"/>
    <input type="submit" value="submit"/>
 </p>

</body>