clientHeight/clientWidth returning different values on different browsers

前端 未结 9 1329
有刺的猬
有刺的猬 2020-11-27 19:14

Properties document.body.clientHeight and document.body.clientWidth return different values on IE7, IE8 and Firefox:

IE 8:



        
9条回答
  •  感动是毒
    2020-11-27 19:40

    The equivalent of offsetHeight and offsetWidth in jQuery is $(window).width(), $(window).height() It's not the clientHeight and clientWidth

提交回复
热议问题