## 1.input
- 類型
1.文本
~~~
<input type="text" >
~~~
2.密碼
~~~
<input type="password">
~~~
3.提交
~~~
// 默認為box-sizing:border-box;
<input type="submit">
~~~
4.單選框
~~~
<input type="radio">
~~~
5.復選框
~~~
<input type="checkbox">
<input type="checkbox">
~~~
## 2.form
1.label
- 為input元素的定義標簽
~~~
<label for="user">
<input type="text" id="user">
~~~
2.單選框
- 技術要點,name屬性值要一樣
~~~
<input type="radio" name="sex">男
<input type="radio" name="sex">女
~~~
3.復選框
- 多選
~~~
<input type="checkbox">
<input type="checkbox">
~~~
4.下拉選框
- select
~~~
<select>
<option value="123">123</option>
<option value="456">456</option>
<option value="789">789</option>
<option value="10" selected>10</option>
</select>
~~~
5.文本域
~~~
<textarea name="" id="" cols="30" rows="10"></textarea>
~~~
6.特殊字符
~~~
空格
< <
> >
~~~
~~~
- 第一章.git
- 1-1 git基本命令
- 1-2 ssh的配置
- 1-3 版本回退
- 第二章 markdown基本語法
- 第三章 HTML
- 3-1 HTML標簽概念
- 3-2 html結構
- 3-3 基本標簽
- 3-4 input輸入框
- 3-5 table表格
- 第四章 CSS
- 4-1 CSS基礎
- 4-2 基本樣式
- 4-3 選擇器
- 4-4 盒子模型
- 4-5 進階樣式
- 4-6 樣式繼承
- 4-7 浮動
- 4-8 定位
- 4-8 水平垂直居中
- 4-9 特殊情況
- 4-10 表單
- 4-11 2D效果
- 4-12 BFC
- 第五章 JavaScript筆記
- 5-1JS基礎
- 5-2 DOM介紹
- 5-3 DOM操作詳解
- 5-4 JSON詳解
- 第六章 jQuery
- 6-1 jQuery概述
- 6-2 jQuery選擇器
- 6-3 jQuery常用操作
- 第七章 AJAX
- 7-1 原生ajax
- 7-2 http,get,post
- 7-3 跨域
- 7-4 jQuery-ajax
- Web前端命名規范