window.selfプロパティは、現在のウィンドウへの参照を返すプロパティ。
構文
<script type="text/javascript">
window.self;
</script>
window.self;
</script>
戻り値
現在のウィンドウへの参照。
サンプル
window.self:
サンプルの動作について
「サンプル」ボタンをクリックすると、「window.self」の右横に「現在のウィンドウを参照。」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function sampleWindowSelf() {
window.self.document.getElementById( "sampleWindow-self" ).innerHTML = "現在のウィンドウを参照。";
}
</script>
function sampleWindowSelf() {
window.self.document.getElementById( "sampleWindow-self" ).innerHTML = "現在のウィンドウを参照。";
}
</script>
HTML
<div class="sample">
<button onclick="sampleWindowSelf()">サンプル</button>
<br /><br />
window.self: <span id="sampleWindow-self"></span>
</div>
<button onclick="sampleWindowSelf()">サンプル</button>
<br /><br />
window.self: <span id="sampleWindow-self"></span>
</div>
CSS
<style type="text/css">
.sample button {
font-size: 16px;
}
</style>
.sample button {
font-size: 16px;
}
</style>