window.home()は、ブラウザのホームページに指定したページに移動するメソッド。
2013年6月30日現在、IE9とGoogleChromeは未対応。Firefoxでは動作する。
構文
<script type="text/javascript">
window.home();
</script>
window.home();
</script>
<script>~</script>
内であれば、window.
は、下記のように省略可能。
<script type="text/javascript">
home();
</script>
home();
</script>
サンプル
サンプルの動作について
「新たにウィンドウを開く」ボタンをクリックすると、新たなウィンドウを開き、新たなウィンドウに、ブラウザのホームページに指定したページを読み込む。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function sampleOpenWindow() {
sampleWindow = window.open();
sampleWindow.home();
}
</script>
function sampleOpenWindow() {
sampleWindow = window.open();
sampleWindow.home();
}
</script>
HTML
<div class="sample">
<button onclick="sampleOpenWindow()">新たにウィンドウを開く</button>
</div>
<button onclick="sampleOpenWindow()">新たにウィンドウを開く</button>
</div>
CSS
<style type="text/css">
.sample button {
font-size: 16px;
}
</style>
.sample button {
font-size: 16px;
}
</style>