Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery.height()関数を使用して要素の高さを取得しようとしましたが、パディングとマージンを無視しているようです。
.height()
JavascriptやjQueryを使用して要素のボックスのサイズを取得するにはどうすればよいですか?
アウターハイトを使用する
http://api.jquery.com/outerHeight/
divをパディング/マージンで別のdiv内にラップし、コンテナーdivの高さを取得できますか?
<div id="container"> <div id="divWithPadding"> content </div> </div>
outerHeight();を使用した例
http://jsfiddle.net/HruqF/2/