美文网首页
小知识汇总

小知识汇总

作者: 海藻web开发 | 来源:发表于2017-06-29 08:47 被阅读0次

    查看一个变量名是不是存在 直接输入的话会提示错误,可以挂到window上以对象的方式查看

    console.log(value)    //报错
    consolelog(window.value)    //undefined
    

    JS获取尺寸

    clientWidth = width + padding
    offsetHeight = width + padding + border
    offset比client多了border的宽度 clientHeight offsetWidth 同理
    getBoundingClientRect
    详情

    相关文章

      网友评论

          本文标题:小知识汇总

          本文链接:https://www.haomeiwen.com/subject/nhqlqxtx.html