How to get the overflowed width of an element in a webpage

后端 未结 2 1407
再見小時候
再見小時候 2021-01-07 16:33

I have two divs like so

tooooooooooooooooooooo much cont
相关标签:
2条回答
  • 2021-01-07 17:15
    document.getElementById('parent').scrollWidth
    

    scrollWidth is an IE extension that historically was less well supported than offsetWidth. However nowadays all the modern desktop browsers include it.

    0 讨论(0)
  • 2021-01-07 17:37

    Using JQuery, you can do:

    $('#parent')[0].scrollWidth
    
    0 讨论(0)
提交回复
热议问题