表单

表单

<fieldset>表单框

                 <legend>表单标题</legend>

                 <form action="">

                         Form讲数据传递给另外一个网页

                 </form>

        </fieldset>     

 

 

<form action="后台地址" method="get(拼写在网址后面长度是固定的)/post(没有固定的长度)"> enctype="multiple"   加密大件

        文本  disabled(不可操作)  readonly(只读)  placeholder(提示文本)

autofocus(自动获焦)  autocomplete=”on(默认。规定启用自动完成功能)/off禁用自动完成功能)”(关闭联想)标签=元素

 

type

 

文本框账号:<input type="text"长什么样子 name="ID" value=""><br>键值(取内容)     

密码框密码:<input type="password" name="pwd" value=""><br>

文本域<textarea name=”wenben”>文本域</textarea>

隐藏域    <input type="hidden" name=""><br>

多行简介:<textarea name="" id="" cols="30" rows="10"></textarea><br>

单选性别:<input type="radio" name="sex" checked(选中) value="男">男

      <input type="radio" name="sex" value="女">女<br>                                        红的相同

多选爱好:<input type="checkbox" name="like">游戏<br>

<label><input type="checkbox" name="like">游戏<br></label>点字选

<input type="checkbox" name="like"id="sl">睡觉<br><label for="s"></label>

下拉菜单:<select name="" id="">

                 <option value="">一班</option>

写在哪里就默认选择哪里<option value="" selected(默认选择)>二班</option>

</select>

 

 

提示文字<input placeholder=”提示文字”>

普通按钮<input type="button" name=""><br>

提交按钮<input type="submit" name="">     <br>在form表单有效<button>

重置按钮<input type="reset" name=""><br>

 

 

上传文件<input type="file" name="" multiple><br>

点图提交<input type="image" name=""><br>

选择日期<input type="date" name=""><br>

选择颜色<input type="color" name=""><br>

邮箱email <input type="email" name=""><br>

</form>

posted @ 2019-01-05 16:40  小白WY  阅读(109)  评论(0编辑  收藏  举报