当前位置:Gxlcms > html代码 > HTML表单元素

HTML表单元素

时间:2021-07-01 10:21:17 帮助过:45人阅读

<input> 元素

最重要的表单元素是 <input> 元素。

<input> 元素根据不同的 type 属性,可以变化为多种形态。

<select> 元素(下拉列表)(推荐学习:HTML入门教程)

<select> 元素定义下拉列表:

实例

<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="fiat">Fiat</option>
<option value="audi">Audi</option>
</select>

<option> 元素定义待选择的选项。

列表通常会把首个选项显示为被选选项。

您能够通过添加 selected 属性来定义预定义选项。

实例

<option value="fiat" selected>Fiat</option>

<textarea> 元素

<textarea> 元素定义多行输入字段(文本域):

实例

<textarea name="message" rows="10" cols="30">
The cat was playing in the garden.
</textarea>

以上 HTML 代码在浏览器中显示为:

The cat was playing in the garden.

<button> 元素

<button> 元素定义可点击的按钮:

实例

<button type="button" onclick="alert('Hello World!')">Click Me!</button>

以上就是HTML表单元素的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行