美文网首页
input的代码类

input的代码类

作者: 小豪豪豪豪豪豪 | 来源:发表于2018-04-25 09:32 被阅读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>

相关文章

网友评论

      本文标题:input的代码类

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