下文笔者将讲述HTML表单的简介说明,如下所示
HTML表单简介
在html语言中,表单的功能:
支持同用户进行交互,
如:用户可使用输入数字、字母、下拉框、选择框、相应按钮
HTML表单的实现方式
form:
定义表单
input:
定义输入框,通过不同的类型
可设置为字母,数字,密码,单选框,复选框等形式
textarea:
文本域,可用于输入多行文本
select:
下拉选择框
html表单示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>linux28.com html表单示例</title>
</head>
<body>
<form method="post" action="">
<input type="text" name="">
<select name="">
<option value="" selected>
<option value="">
</select>
<input type="radio" name="">
<input type="checkbox" name="">
<textarea name="" rows="" cols=""></textarea>
<input type="reset">
<input type="submit">
<input type="password" name="">
<input type="hidden" name="">
<input type="color" name="">
<input type="image" src="">
<input type="button" value="" onclick="">
<input type="date" name="">
<input type="datetime-local" name="">
<input type="email" name="">
<input type="month" name="">
<input type="number" name="" min="" max="">
<input type="range" name="" min="" max="">
<input type="search" name="">
<input type="tel" name="">
<input type="time" name="">
<input type="url" name="">
<input type="week" name="">
</form>
</body>
</html>