search

Home  >  Q&A  >  body text

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

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

巴扎黑巴扎黑2819 days ago333

reply all(3)I'll reply

  • 阿神

    阿神2017-04-10 15:11:37

    document.body.offsetWidth

    reply
    0
  • PHP中文网

    PHP中文网2017-04-10 15:11:37

    window.innerWidth

    reply
    0
  • PHP中文网

    PHP中文网2017-04-10 15:11:37

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

    reply
    0
  • Cancelreply