要素の横幅と高さを取得するには、outerWidth/outerHeight、innerWidth/innerHeightを使用します。
サンプルソース
例)hogeをクリックすると要素のサイズを表示する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>テスト</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#d1').click(function(e){ let ow = $(this).outerWidth(); let oh = $(this).outerHeight(); let iw = $(this).innerWidth(); let ih = $(this).innerHeight(); alert(ow + "x" + oh + "、" + iw + "x" + ih); }); }); </script> <style> #d1{ background-color:#f0f0f0; border:5px solid #999999; width:150px; height:100px; } </style> </head> <body> <div id="d1">hoge</div> </body> </html> |
結果例
150x100のDIVで、枠線の太さが10pxです。
hoge
- (結果)
- 160x110、150x100
1つ目の値はouter値、2つ目の値はinner値です。
解説
- outerWidth、outerHeightはborderサイズを含むサイズを返します。
- innerWidth、innerHeightはborderサイズを含まないサイズを返します。
- outerWidthとouterHeightは引数にtrueを渡すと、marginを含んだ値が返ります。
例)outerWidth(true);