常见的标签(二)
一、表单标签
1.form标签
form标签常与input标签连用
<form action="">
<input type="text">
</form>
常见属性
action属:跳转的路径
路径:相对路径:源文件相对于目标文件的相对路径
..\CSDN\demol05.html
绝对路径:
C:\Users\xx\Desktop\前端\CSDN\demol05.html
method属性:用来明确表单提交的方式get(默认)、post(注:post请求较get请求更安全)
name属性:表单名称
二、表单元素
input标签:
<input type="" name="" id="" class="" value="">
type取值:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="">
<input type="text">
<!-- 文本框 -->
<input type="password">
<!-- 密码框 -->
<input type="submit">
<!-- 提交按钮 -->
<input type="radio">
<!-- 单选按钮 -->
<input type="checkbox">
<!-- 多选按钮 -->
<input type="reset">
<!-- 重置按钮 -->
<input type="button">
<!-- 普通按钮 -->
<input type="image">
<!-- 图像按钮 -->
<input type="file">
<!-- 文件 -->
<input type="hidden">
<!-- 隐藏域 -->
<input type="email">
<!-- 邮箱域 -->
<input type="color">
<!-- 颜色域 -->
<input type="date">
<!-- 日期 -->
<input type="time">
<!-- 时间 -->
<input type="datetime-local">
<!-- 日期+时间 -->
<input type="range">
<!-- 进度条 -->
</form>
</body>
</html>
常见属性
readonly:只读(不能修改)
checked:默认选择
disabled:禁用不可点击
autofocus:默认光标的位置
required:不能空白提交