outerWidth()

このエントリーをはてなブックマークに追加

outerWidth()は要素の幅を左右のborder、margin含めた形で取得できるメソッドです。

引数に何も指定しない場合はborderを含んだ幅を取得できます。

$("div").outerWidth()

引数にtrueを指定することでborder、margin含めた幅を取得できます。

$("div").outerWidth(true)

要素の幅のみはwidth()、paddingを含んだ幅はinnerWidth()で取得できます。

jQuery 1.2.6での追加/変更

outerWidth()はjQuery 1.2.6で追加されたメソッドです。

参考URL

.outerWidth() | jQuery API Documentation

登録日 : 2013年03月04日 最終更新日 : 2013年3月4日

同じカテゴリー(CSS)のエントリー

検索

スポンサードリンク

バージョン

リファレンス