前端笔记整理完成

This commit is contained in:
estomm
2022-04-18 23:03:54 +08:00
parent bb9110d289
commit 3d6284517e
50 changed files with 5685 additions and 15 deletions

View File

@@ -0,0 +1,113 @@
## `<form>` 表单
表单是一个包含表单元素的区域。表单元素是允许用户在表单中输入内容,比如:文本域(textarea)、下拉列表、单选框(radio-buttons)、复选框(checkboxes)等等。
| 属性名 | 值 | 描述 |
| --- | --- | --- |
| action | URL | 规定当提交表单时向何处发送表单数据。|
| method | get/post | 规定用于发送表单数据的 HTTP 方法。|
| name | text | 规定表单的名称。|
## 文本框
文本框通过 `<input type="text">` 标签来设定,当用户要在表单中键入字母、数字等内容时,就会用到文本框。
- `<input>` 元素是空的,它只包含标签属性。
- 你可以使用 `<label>` 元素来定义 `<input>` 元素的标注。
- 表单本身并不可见。同时,在大多数浏览器中,文本框的缺省宽度是 20 个字符。
- `<input>` 元素在 `<form>` 元素中使用,用来声明允许用户输入数据的 input 控件。
| 属性名 | 值 | 描述 |
| --- | --- | --- |
| type | button/checkbox/radio/password | type 属性规定要显示的 `<input>` 元素的类型。|
| value | text | 设置值。 |
| src | URL | src 属性规定显示为提交按钮的图像的 URL。 (只针对 type="image")|
| size | number | size 属性规定以字符数计的 `<input>` 元素的可见宽度。|
| readonly | readonly | readonly 属性规定输入字段是只读的。|
| disabled | disabled | disabled 属性规定应该禁用的 `<input>` 元素。|
| checked | checked | checked 属性规定在页面加载时应该被预先选定的 `<input>` 元素。 (只针对 type="checkbox" 或者 type="radio")|
示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>28_文本框.html</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<form id="form1" name="form1" action="#" method="post">
用户名:<input type="text" id="username" name="username" value="用户名">
密码:<input type="text" id="password" name="password" value="密码" readonly="readonly">
确认密码:<input type="text" id="password" name="password" value="密码" disabled="true">
</form>
</body>
</html>
```
## 密码字段
密码字段通过标签 `<input type="password">` 来定义。
```html
<!DOCTYPE html>
<html>
<head>
<title>29_密码框.html</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<form id="form1" name="form1" action="#" method="post">
用户名:<input type="text" id="username" name="username">
密码:<input type="password" id="password" name="password">
</form>
</body>
</html>
```
## 单选按钮
`<input type="radio">` 标签定义了表单单选框选项。
```html
<!DOCTYPE html>
<html>
<head>
<title>30_单选框.html</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<form id="form1" name="form1" action="#" method="post">
性别:
<input type="radio" checked="checked" id="male" name="sex" value="male">
<input type="radio" id="female" name="sex" value="female"><br>
</form>
</body>
</html>
```
## 复选框
`<input type="checkbox">` 定义了复选框. 用户需要从若干给定的选择中选取一个或若干选项。
```html
<!DOCTYPE html>
<html>
<head>
<title>31_复选框.html</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<form id="form1" name="form1" action="#" method="post">
爱好:
<input type="checkbox" checked="checked" id="java" name="like" value="java">java
<input type="checkbox" id="PHP" name="like" value="PHP">PHP
</form>
</body>
</html>
```
## 下拉列表
### `<select>` 元素用来创建下拉列表。