jQuery API の position() は、最初にマッチした要素の、親要素からの相対的位置座標を、取得するメソッド。topとleftのプロパティを含むオブジェクトを返す。
記述方法
jQuery( セレクター ) . position();
「セレクター」に最初にマッチした要素の、親要素からの相対的位置座標を、取得する。
記述例
jQuery( '.jquery-sample' ) . position();
クラス名が「jquery-sample」である要素のうち、最初にマッチした要素の、親要素からの相対的位置座標を、取得する。
実装例(サンプル)
top:
left:
実装例(サンプル)の動作について
赤色、青色、緑色の背景色のボックスの、いづれかのボックス要素をクリックすると、クリックしたボックス要素の、黄色のボックス要素からの相対的な位置座標を取得し、「top:」の右側に、上からの相対的位置座標、「left:」の右側に左からの相対的位置座標を、クリックしたボックス要素の背景色のテキストで表示する。
実装例(サンプル)のソースコード
JavaScript
<script>
<!--
jQuery( function() {
jQuery( '#jquery-sample-position > div' ) . click( function () {
var position = jQuery( this ) . position();
var strBackgroundColor = jQuery( this ) . css( 'background-color' );
jQuery( '#jquery-sample-message-top' ) . text( position . top + 'px' ) . css( 'color', strBackgroundColor );
jQuery( '#jquery-sample-message-left' ) . text( position . left + 'px' ) . css( 'color', strBackgroundColor );
} );
} );
// -->
</script>
<!--
jQuery( function() {
jQuery( '#jquery-sample-position > div' ) . click( function () {
var position = jQuery( this ) . position();
var strBackgroundColor = jQuery( this ) . css( 'background-color' );
jQuery( '#jquery-sample-message-top' ) . text( position . top + 'px' ) . css( 'color', strBackgroundColor );
jQuery( '#jquery-sample-message-left' ) . text( position . left + 'px' ) . 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-position {
position: relative;
width: 250px;
height: 120px;
margin-top: 10px;
background-color: yellow;
}
#jquery-sample-position div {
float: left;
width: 50px;
height: 50px;
margin-right: 20px;
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-position {
position: relative;
width: 250px;
height: 120px;
margin-top: 10px;
background-color: yellow;
}
#jquery-sample-position div {
float: left;
width: 50px;
height: 50px;
margin-right: 20px;
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-position">
<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-position">
<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>