<input> 元素
最重要的表单元素是 <input> 元素。
<input> 元素根据不同的 type 属性,可以变化为多种形态。
<select> 元素(下拉列表)(推荐学习:HTML入门教程)
<select> 元素定义下拉列表:
实例
<select name="cars"><option html' target='_blank'>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表单元素的详细内容,更多请关注 其它相关文章!
郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。
新闻热点
疑难解答