当前位置 : 主页 > 网页制作 > html >

HTML表单元素

来源:互联网 收集:自由互联 发布时间:2023-08-02
input 元素 最重要的表单元素是 input 元素。 input 元素根据不同的 type 属性,可以变化为多种形态。 select 元素(下拉列表) (推荐学习:HTML入门教程) select 元素定义下拉列表: 实例 se

HTML表单元素

<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的删除线用什么标签
下一篇:没有了
网友评论