美文网首页
HTML 表单应用

HTML 表单应用

作者: 帆啊帆_ | 来源:发表于2018-04-17 21:09 被阅读0次

    账号框

    <input type="text" placeholder="XXX(水印字)" name="username">


    密码框

    <input type="password" name="userpwd">


    下拉列表

    <select>

          <option>选项1</option>

          <option>选项2</option>

          <option>选项3</option>

    </select>


    单选

    男:<input type="radio" checked="true"(默认选中)>

    女:<input type="radio">


    多选

    A <input type="checkbox">

    B <input type="checkbox">

    C <input type="checkbox">


    按钮

    <input type="submit" value="名字">

    <button>XX</buttom>


    相关文章

      网友评论

          本文标题:HTML 表单应用

          本文链接:https://www.haomeiwen.com/subject/ibiekftx.html