Jquery, know width and height of a div with scroll bar

后端 未结 1 1357
青春惊慌失措
青春惊慌失措 2021-01-12 03:23

I want have width and height of a full div with scroll using JQuery, but i can only have size of visible content and not size of visible + hidden content of scroll bar.

1条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-12 03:56

    Get the element's .scrollHeight:

    $(".el").get(0).scrollHeight;
    

    ​ It goes without saying you could use .scrollWidth for the x-axis as well.

    Fiddle: http://jsfiddle.net/spN6n/

    0 讨论(0)
提交回复
热议问题