suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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

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

巴扎黑巴扎黑2820 Tage vor337

Antworte allen(3)Ich werde antworten

  • 阿神

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

    document.body.offsetWidth

    Antwort
    0
  • PHP中文网

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

    window.innerWidth

    Antwort
    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()

    Antwort
    0
  • StornierenAntwort