第二章
- p 段落标签
- h1-h6 标题标签
- hr 水平线标签
- br 换行标签
- i 斜体字标签
- b 、strong 粗体字标签
- sup、sub 上标和下标标签
- del删除线标签、ins下划线标签
- 预格式标签 pre
- 有序列表标签 ol
- 无序列表标签 ul
- 定义列表标签 dl、dt、dd
- 图像标签 img
- 外部超链接 a 标签 href 属性
- 表格标签 table、caption、tr、th
- 内联框架标签 iframe
- div 标签
- span 标签
- 记号标签 mark
- 进度标签 progress
- 度量标签 meter
第三章
css 内联样式表 :
css 内部样式表 :
css 外部样式表
优先级:谁离得最近,谁优先级最高。
id 选择器:
类选择器:
属性选择器:
css颜色选择:
css属性:
background-color
background-images
background-repeat
background-attachment
background-position
padding
border-width
border-style
border-color
margin
text-indent
text-align
text-decoration
text-transform
letter-spacing
font-family
font-style
font-variant
font-weight
font-size
超链接的应用 a:link , a:visited , a:hover , a:active
list-style-type
list-style-image
list-style-position
border-collapse
border-spacing
caption-side
empty-cells
table-layout
position:absolute/relative
z-index
float
第四章 JavaScript
+内部
外部
变量
- undefined
- NULL
- length
- 获取字符串中单个字符
- 连接字符串
- 检查字符串中字符的位置
- 科学计数法
- 进制数
- 浮点数
- Infinity
- NaN
- 布尔值
- if-else语句
- switch
- 简单函数
- 带有返回值的函数
- DOM
查找
- 创建动态内容
修改元素内容
修改元素属性
修改css
事件
添加元素
删除元素
第五章 拖放API
设置可拖放
加上书里面的表格
第六章 表单
- form
- input的type属性的值:
radio
checkbox
submit
reset
button
image
file
hidden- label
- textarea
- select
- button
- fieldset
- legend
- H5 表单新增输入类型
tel
url
number
range
datetime-local
search
color- H5 表单新增元素
datalist
output
属性:
autofocus
placeholder
required
max、min、step
multiple
width
height
pattern=“[A-z]{10}”
autocomplete=“on”
novalidate=“true”
第十章 画布API
- canvas标签
js操作
var ctx = c.getContext(“2d”);
ctx.moveTo(10,10)
ctx.lineTo(150,50)
ctx.lineTo(10,50)
ctx.lineTo(10,10)
ctx.stroke()