<p>之前的文章《手把手教你给html文本添加有序列表与无序列表(代码详解)》中,给大家介绍了怎么使用html给文本添加有序列表与无序列表。下面本篇文章给大家介绍html网页中如何实现输入框效果,我们一起看怎么做。<p> <p>
<input>
标签指定:搜集用户信息并且输入字段很多种形式,比如:文本字段、复选框、单选按钮、等等。
<input type="">
这个type是告诉它是个什么类型,比如txt文本类型,就是这个默认的一个类型,给大家通过代码示例看看是什么样呢?
<p>代码示例<body> <input type="text"> </body>
<p>
来试一试。<p>代码示例<body> <p>用户名:</p> <input type="text"> </body>
<div>
把它弄成一行。<p>代码示例<body> <div> 用户名: <input type="text"> </div> </body>
<body> <div> 用户名: <input type="text"> </div> <div> 密码: <input type="text"> </div> </body>
password
实现密码效果。<p>代码示例密码: <input type="password">
checkbox
来实现<p>代码示例<div> 1选项 <input type="checkbox"> 2选项 <input type="checkbox"> 3选项 <input type="checkbox"> </div>
radio
来实现单选框。<p>代码示例单选: <input type="radio">
<div> <input type="color"> </div>
以上是html篇:网页中如何实现输入框效果(代码详解)的详细内容。更多信息请关注PHP中文网其他相关文章!