摘要: 元素的属性 Div.attributes 是所有标签属性构成的数据集合 Div.classList 是所有class名构成的数组集合 在classList的原型链上看以看到add()和remove() (1) clientWidth/clientHeight 是我们设置的宽和高加上内边距(没有边框) 阅读全文
posted @ 2018-11-12 20:07 小炸渣i 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1.轮播图 案例 2.定时器this问题 var t=setInterval(function(){ console.log(this) },1000) 这里面的this是window Person.prototype={ fn:function(){ console.log(this) }, n: 阅读全文
posted @ 2018-11-12 20:05 小炸渣i 阅读(68) 评论(0) 推荐(0) 编辑