[toc]
### 1. DOM修改元素内容
`innerHTML `:改变元素的内容,可改变html结构
`textContent` :改变文本的内容,不改变html结构
```
var test = document.getElementById("test");
test.onclick = function(){
this.innerHTML = "<p>change</p>";
// this.textContent = "<p>change</p>";
}
```
### 2. DOM修改CSS样式
1. ele.style.cssAttr = ""
```
test.style.color = "red";
```
2. ele.className()
```
test.className("none");
```
3. ele.style.cssText()
```
test.style.cssText = "color:red;
font-weight: bold;
font-size:30px"
```
4. ele.classList
```
ele.classList.add("none");
ele.classList.remove("none");
ele.classList.toggle("none");
test.classList.contains("show") //判断是否包含show,结果返回boolean
```
5. ele.setAttribute(attr, value)
```
var test = document.getElementById("test");
test.setAttribute("style", "color: red");
test.setAttribute("class", "current");
```
6. ele.style.setProperty("color", "yellow");
ele.style.removeProperty("color", "red");
> #### 1. 获取css样式
1. 获取样式表的样式: `getComputedStyle(element).cssAttr`
2. 获取内联样式:`element.style.cssAttr`
```
<div id="test" style="background-color:red;"></div>
<script>
var test = document.getElementById("test");
// var bg = getComputedStyle(test).backgroundColor;
var bg = test.style.backgroundColor;
console.log(bg); //red
</script>
```
> #### 2. demo-点击显示隐藏
```
var test = document.getElementById("test");
var btn = document.getElementById("btn");
btn.onclick = function(){
if(test.classList.contains("show")){
test.classList.remove("show");
}else{
test.classList.add("show");
}
//test.classList.toggle("show");
}
```
### 3. 操作元素属性
获取:getAttribute("id")
```
var parent = document.getElementById("parent");
var attr = parent.getAttribute("id");
console.log(attr);
```
移除:removeAttribute
### 4. 获取元素的大小
#### 1. offset
>offset属性只读,不能通过offset方法修改
offsetParent:获取给了定位的父级元素,offset返回number型
offsetLeft:返回元素相对父元素水平偏移位置
offsetTop:返回元素相对父元素垂直偏移位置
offsetWidth:返回元素的宽度(content border padding)
offsetHeight:返回元素的高度
#### 2. clientWidth
ele.clientWidth:不包括border, margin
#### 3. scrollWidth
滚动区域的width, height
scrollWidth、scrollHeigth
### 5. 获取元素距离顶部的高度
1. javascript
```
/*向外循环获取offsetTop*/
function getTop(element){
var realTop = element.offsetTop;
var parent = element.offsetParent;
while(parent !== null) {
realTop += parent.offsetTop;
parent = parent.offsetParent;
}
return realTop;
}
var child = document.getElementById("child");
var top = getTop(child);
console.log(top);
```
2. jQuery offset().top方法
- JavaScript
- 1.数组
- 1.数组Api
- 2.判断是否为数组
- 3.手写forEach, map, filter, every, some, reduce
- 4.类数组转化为数组
- 5.reduce实现compose函数
- 7.sort实现与排序
- 2.类型
- 1. let, const, var
- 1. Number 数字
- 3. Boolean 布尔值
- 4. undefined和null
- 2. String 字符串
- 1. 字符串方法
- 2. 操作字符串实例
- 3. startWith&字符串模板
- 5. 类型转换
- 4.深拷贝与浅拷贝
- 7.Symbol类型
- typeof 和 instanceof
- Set
- Map
- 3.this,原型,原型链
- 1.this
- 2.手写call, apply, bind
- 3.模拟new操作符
- 4.手写Object.create
- 4.对象
- proxy代理
- defineProperty数据劫持
- 4.模块化
- 5.http
- ECMAScript
- 0. 调试&兼容性&错误处理
- 3. 运算
- 4. 对象(三种引用类型&正则)
- 1. 数组
- 1. 数组的六种遍历方法
- 2. 数组的增删查改
- 3. 操作数组(展开、join、排序...)
- 4. 补充五种ES6方法
- 2. 函数
- 3. JSON
- 4. 正则
- 附:正则表达式特殊字符
- 5. 面向对象
- es6的继承
- 6. 控制语句
- 7. ajax
- 8. promise
- 9. 闭包
- 1. 闭包产生三个相同随机数
- 2. 闭包实现点赞
- 10.箭头函数
- _isEmpty
- Object.assign(target, obj, obj)
- Math.ceil, round,
- DOM
- 3.1 节点
- 3.2 DOM操作元素
- 3.3 fragment DOM碎片
- 5. 事件
- BOM
- 1. window
- 2. navigation检测访问类型
- 3. screen窗口大小内容大小
- 4. history
- promise
- 1.promise使用
- 2.手写promise
- 3.手写promise.all
- 生成器generator
- 1.generator的使用
- 2.简单实现generator
- 手写async await
- async/await
- 5.防抖节流
- 难点深入
- 1. 浏览器&js特点
- 2. JS堆栈与深浅拷贝
- 3. 详解a++和++a的区别
- 4. JS&jQuery获取元素的方法
- 5. NodeList和HTMLCollection区别
- 6. var与let的区别
- 7. this 与 bind call apply
- 8. get与post请求的区别
- 9. 闭包
- Dom demo
- 1. JQuery--页面点击切换效果
- 2. JQuery-load实现头尾封装
- 3. JS--添加移除属性名
- 4. jQuery--eq()与index()
- 5. table隔行变色
- 6. 改变函数this的指向
- 7. jQuery each遍历
- ECMAScript demo
- 1. 斐波那契数列
- 2. 数组去重
- 3. 自调用函数生成随机数
- 浏览器、DOM
- 1.从输入url到页面加载的全过程
- 2.http与https
- 3.v8垃圾回收机制
- 4.dom事件
- 5.跨域
- 6.强缓存和协商缓存
- 3.eventloop,宏任务和微任务
- 1.什么是任务
- 2.执行顺序例题
- 3.执行顺序例题,添加script
- 4.执行顺序,多个宏任务
- 4.HTTP
- 1.经典五层模型
- 2.http发展历史
- 3.http三次握手
- 4.URI,URL,URN
- 1.http协议
- 2.https
- http状态码
- 5.script标签defer和async区别
- cookie
- connect: keep-alive