.outerWidth()

outerWidth( [includeMargin] ) 1.2.6追加

戻り値:Integer

padding領域、border領域、margin領域をを含む要素の横幅を計算します。

引数 説明
includeMargin マージンを算出する横幅に含むか含まないかを決定します。
outer_width

デモ

PタグのouterWidthを取得します。

<!DOCTYPE html>
<html>
<head>
  <style>
  p { margin:10px;padding:5px;border:2px solid #666; }
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <p>Hello</p><p></p>
<script>var p = $("p:first");
$("p:last").text( "outerWidth:" + p.outerWidth()+ " , outerWidth(true):" + p.outerWidth(true) );
</script>
</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM