window.moveTo( x, y )は、指定した絶対座標の位置にウィンドウを移動するメソッド。
構文
<script type="text/javascript">
window.moveTo( x, y );
</script>
window.moveTo( x, y );
</script>
引数
- x
- 左端からの距離を、ピクセル単位で指定する。
- y
- 上端からの距離を、ピクセル単位で指定する。
サンプル
サンプルの動作について
- 「新たにウィンドウを開く」ボタンをクリックすると、新たなウィンドウを開く。
- 「開いたウィンドウを移動」ボタンをクリックすると、左端から100px、上端から100pxの座標位置へウィンドウを移動し、フォーカスを当てる。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function sampleOpenWindow() {
sampleWindow = window.open( '', 'sample', 'width=300,height=200,left=300' );
sampleWindow.document.write( "<p>サンプルウィンドウ</p>" );
}
function sampleMoveTo() {
sampleWindow.moveTo( 100, 100 );
sampleWindow.focus();
}
</script>
function sampleOpenWindow() {
sampleWindow = window.open( '', 'sample', 'width=300,height=200,left=300' );
sampleWindow.document.write( "<p>サンプルウィンドウ</p>" );
}
function sampleMoveTo() {
sampleWindow.moveTo( 100, 100 );
sampleWindow.focus();
}
</script>
HTML
<div class="sample">
<button onclick="sampleOpenWindow()">新たにウィンドウを開く</button>
<button onclick="sampleMoveTo()">開いたウィンドウを移動</button>
</div>
<button onclick="sampleOpenWindow()">新たにウィンドウを開く</button>
<button onclick="sampleMoveTo()">開いたウィンドウを移動</button>
</div>
CSS
<style type="text/css">
.sample button {
font-size: 16px;
}
</style>
.sample button {
font-size: 16px;
}
</style>