• 表单


    <!DOCTYPE html>
    <html lang="en">
    <head>
     <meta charset="UTF-8">
     <title>form 表单的学习</title>
    </head>
    <body>
    <!-- 表单的标签 提交方式两种: get (默认 长度有限制)和 post(安全性高)  -->
    <form action="http://192.168.1.238" method="get">
         用户名:<input type="text" placeholder="请输入用户名" /><br/><br/><br/>
         密&nbsp;码:<input type="password"/><br/><br/><br/>
         性&nbsp;别:<input type="radio" name="gender" value='1' />男<input type="radio" name="gender" value='0' checked="checked" />女<br/><br/><br/>
         兴趣: <input type="checkbox" name='like'/>打篮球<input type="checkbox" name='like' checked="checked"/>写代码 <br/><br/><br/>
         头像 :<input type="file" name="picture"/><br/><br/><br/>
         个人简介:
         <textarea name="about" style="100px;height:200px;"></textarea><br/><br/><br/>
         地区:
         <select>
          <option value="zz"> 郑州</option>
          <option value="ly"> 西安</option>
          <option value=""> 北京</option>
          </select><br/><br/><br/>
          按钮 :
          <input type="sumit" value='提交表单'/> 
          <input type="reset" value='重置表单'/> 
          <input type="button" value='取消'/> 

    </form>
     
    </body>
    </html>
  • 相关阅读:
    每天一篇经济学人 2020-09-15 分享在 特朗普的“疫苗政治”:科学与政治之争 | 经济学人
    english notes
    new word
    gilbert strang
    news etc
    对自己的要求
    JDBC添加数据
    题目-1031-字符串反转
    题目-1002-字符串分类统计
    ERROR:格式化hdfs后,datanode只启动了一个
  • 原文地址:https://www.cnblogs.com/liang715200/p/10038263.html
Copyright © 2020-2023  润新知