小知识汇总
2017-06-29 本文已影响0人
海藻web开发
查看一个变量名是不是存在 直接输入的话会提示错误,可以挂到window上以对象的方式查看
console.log(value) //报错
consolelog(window.value) //undefined
JS获取尺寸
clientWidth = width + padding
offsetHeight = width + padding + border
offset比client多了border的宽度 clientHeight offsetWidth 同理
getBoundingClientRect
详情