jQuery API の offset() は、最初にマッチした要素の、現在の座標を取得するメソッド。topとleftのプロパティを含むオブジェクトを返す。
記述方法
jQuery( セレクター ) . offset();
「セレクター」に最初にマッチした要素の、現在の座標を取得する。
記述例
jQuery( '.jquery-sample' ) . offset();
クラス名が「jquery-sample」である要素のうち、最初にマッチした要素の、現在の座標を取得する。
実装例(サンプル)
top:
left:
実装例(サンプル)の動作について
赤色、青色、緑色の背景色のボックスの、いづれかのボックス要素をクリックすると、クリックしたボックス要素の現在の座標を取得し、「top:」の右側に、上からの位置、「left:」の右側に左からの位置を、クリックしたボックス要素の背景色のテキストで表示する。
実装例(サンプル)のソースコード
JavaScript
<script>
<!--
jQuery( function() {
jQuery( '#jquery-sample-offset > div' ) . click( function () {
var offset = jQuery( this ) . offset();
var strBackgroundColor = jQuery( this ) . css( 'background-color' );
jQuery( '#jquery-sample-message-top' ) . text( offset . top ) . css( 'color', strBackgroundColor );
jQuery( '#jquery-sample-message-left' ) . text( offset . left ) . css( 'color', strBackgroundColor );
} );
} );
// -->
</script>
<!--
jQuery( function() {
jQuery( '#jquery-sample-offset > div' ) . click( function () {
var offset = jQuery( this ) . offset();
var strBackgroundColor = jQuery( this ) . css( 'background-color' );
jQuery( '#jquery-sample-message-top' ) . text( offset . top ) . css( 'color', strBackgroundColor );
jQuery( '#jquery-sample-message-left' ) . text( offset . left ) . css( 'color', strBackgroundColor );
} );
} );
// -->
</script>
CSS
<style type="text/css">
<!--
#jquery-sample {
width: 300px;
height: 200px;
margin: 10px;
padding: 20px;
background-color: pink;
border: 1px solid gray;
border-radius: 10px;
}
#jquery-sample-offset div {
float: left;
width: 50px;
height: 50px;
margin: 10px;
border: 1px solid gray;
border-radius: 10px;
cursor: pointer;
}
-->
</style>
<!--
#jquery-sample {
width: 300px;
height: 200px;
margin: 10px;
padding: 20px;
background-color: pink;
border: 1px solid gray;
border-radius: 10px;
}
#jquery-sample-offset div {
float: left;
width: 50px;
height: 50px;
margin: 10px;
border: 1px solid gray;
border-radius: 10px;
cursor: pointer;
}
-->
</style>
HTML
<div id="jquery-sample">
<p>
top:<span id="jquery-sample-message-top"></span>
</p>
<p>
left:<span id="jquery-sample-message-left"></span>
</p>
<div id="jquery-sample-offset">
<div style="background-color: red;"></div>
<div style="background-color: blue; position: relative; top: 25px;"></div>
<div style="background-color: green; position: relative; top: 50px;"></div>
<span style="clear: left;"></span>
</div>
</div>
<p>
top:<span id="jquery-sample-message-top"></span>
</p>
<p>
left:<span id="jquery-sample-message-left"></span>
</p>
<div id="jquery-sample-offset">
<div style="background-color: red;"></div>
<div style="background-color: blue; position: relative; top: 25px;"></div>
<div style="background-color: green; position: relative; top: 50px;"></div>
<span style="clear: left;"></span>
</div>
</div>