【jQuery】overflow:hidden;ではみ出た幅をscrollWidthで取得する方法
作成日:
2019年11月8日
幅を固定値で指定して、はみ出したエリアを含む全体の幅をjQueryで取得する場合、少し通常とは異なる手段が必要とのことです。
jQuery的なお作法なら、
JavaScript [1]
var w = $('.element').scrollWidth;
のようなイメージなのですが、実際は
JavaScript [2]
var w = $('.element').get(0).scrollWidth;
となるようです。
The offsetWidth, scrollWidth,ClientWidth Property is not working for Html Element
https://stackoverflow.com/questions/26887264/the-offsetwidth-scrollwidth-clientwidth-property-is-not-working-for-html-elemen
I am having this control and trying to get the offsetWidth,clientWidth and scrollWidth.. <span class="label-block" style="height: 19px; text-overflow: ellipsis; overflow: hidden; white-space: ...
実装サンプル
物草 灸太郎
WordPressでホームページを制作しつつ、休日は畑を耕したりDIYを楽しんでいます。
関連投稿
Loading...
コメントをどうぞ