javascript - 移动端如何获得设备浏览器窗口的宽度?
巴扎黑
巴扎黑 2017-04-10 15:09:37
0
3
334

移动端如何获得设备浏览器窗口的宽度?

巴扎黑
巴扎黑

reply all(3)
阿神

document.body.offsetWidth

洪涛

window.innerWidth

Ty80

var width = window.innerWidth || document.body.clientWidth || document.documentElement.clientWidth (后面两个是为了兼容IE/低版本IE)
或jquery
var width = $(window).width()

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template