zoukankan      html  css  js  c++  java
  • HTML常用提交按钮

    1.

    标签=元素

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

    autofocus(自动获焦)  autocomplete=”on(默认。规定启用自动完成功能)/off禁用自动完成功能)

    2.

    文本框:<input type="text" name="ID" value="">

    3.

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

    4.

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

    5.

    单选框:

        <input type="radio" name="id" checked(选中) value="男">男

                 <input type="radio" name="id" value="女">女

    6.

    多选框:

    <input type="checkbox" name="id">游戏<br>

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

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

    7.

    下拉列表:

    <select name="" id="">

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

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

    </select>

    8.

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

    9.

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

    10.

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

    11.

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

    12.

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

    13.

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

    14.

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

    15.

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

    16.

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

  • 相关阅读:
    [CF845G]Shortest Path Problem?
    [洛谷P4149][IOI2011]Race
    [洛谷P4178]Tree
    [AtCoder AGC27A]Candy Distribution Again
    [洛谷P3806]【模板】点分治1
    [洛谷P2634][国家集训队]聪聪可可
    [CF280C]Game on Tree
    [洛谷P3338][ZJOI2014]力
    [CF438D]The Child and Sequence
    [CF609E]Minimum spanning tree for each edge
  • 原文地址:https://www.cnblogs.com/mengmengi/p/10135360.html
Copyright © 2011-2022 走看看