recherche

Maison  >  Questions et réponses  >  le corps du texte

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

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

巴扎黑巴扎黑2838 Il y a quelques jours352

répondre à tous(3)je répondrai

  • 阿神

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

    document.body.offsetWidth

    répondre
    0
  • PHP中文网

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

    window.innerWidth

    répondre
    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()

    répondre
    0
  • Annulerrépondre