码迷,mamicode.com
首页 > 其他好文 > 详细

汉企0908下午课

时间:2016-09-09 08:49:25      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

表单元素: ①②③④⑤⑥⑦★ 

  一、<from>  

    1. 代表表单

    2 . action:提交为哪个页面

      method:①  get :显示提交,由长度限制 ②  post: 隐藏提交

  、文本

      1、文本框:<input type:"text" name:"" value="">  value=文本框值 name=文本框名称

    2、密码框:<input type:"text" name:"" value="">  value=密码框值 name=密码框名称

    3、文本域:<textarea>  值  </textarea> value值是写在两个标签中间的

    4、隐藏域:<input type:"text" name:"" value="">  value=隐藏域值 name=隐藏域名称

  三、按钮

   1、提交:<input type="submit" name="" value="" /> name是按钮的名称 value是按钮上显示的文字

     2、普通按钮:<input type="button" /> name是按钮的名称 value是按钮上显示的文字

     3、重置:<input type="reset" /> name是按钮的名称 value是按钮上显示的文字

     4、图片按钮:< input type="image" src:" a" /> name是按钮的名称 value是按钮上显示的文字

  四、选择

     1、单选按钮:<input type="radio" name="abc" value="" />

    2、复选框:<input type="checkbox" name="" value=""/>

    3、下拉列表:<select>          <option></option>              </select>

    4、文件选择:<input type="file"/>

  五、其他属性

   1、readonly:只读

    2、disabled:不可用;同时不能提交

    3、hidden:隐藏

    4、checked:  <input type="radio"/>或者<input type="checkbox"/>用来做选中

    5、selected:用在下拉列表中,设置那一项被选中

汉企0908下午课

标签:

原文地址:http://www.cnblogs.com/cuizhenyu/p/5855187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!