iframeObject.heightは、インラインフレームのheight属性の値を取得、もしくは、設定するプロパティ。
height属性には、インラインフレームの高さを指定できる。
構文
取得
var $height = $iframeElementReference.height;
戻り値
インラインフレームのheight属性の値。インラインフレームの高さ。
設定
$iframeElementReference.height = "高さ";
- 高さ
- インラインフレームの高さを、ピクセル単位の数値で指定。
サンプル
インラインフレームのheight属性の値:
サンプルの動作について
- 「100px」ボタンをクリックすると、インラインフレームのheight属性値を「100px」にし、インラインフレームの高さを「100px」にする。「インラインフレームのheight属性の値:」の右横に「100px」と表示する。
- 「200px」ボタンをクリックすると、インラインフレームのheight属性値を「200px」にし、インラインフレームの高さを「200px」にする。「インラインフレームのheight属性の値:」の右横に「200px」と表示する。
- 「300px」ボタンをクリックすると、インラインフレームのheight属性値を「300px」にし、インラインフレームの高さを「300px」にする。「インラインフレームのheight属性の値:」の右横に「300px」と表示する。
- 「400px」ボタンをクリックすると、インラインフレームのheight属性値を「400px」にし、インラインフレームの高さを「400px」にする。「インラインフレームのheight属性の値:」の右横に「400px」と表示する。
- 「500px」ボタンをクリックすると、インラインフレームのheight属性値を「500px」にし、インラインフレームの高さを「500px」にする。「インラインフレームのheight属性の値:」の右横に「500px」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setName( $height ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.height = $height;
var $height = $elementReference.height;
document.getElementById( "sampleOutput" ).innerHTML = $height;
}
</script>
function setName( $height ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.height = $height;
var $height = $elementReference.height;
document.getElementById( "sampleOutput" ).innerHTML = $height;
}
</script>
HTML
<p>
<button onclick="setName('100px');">100px</button>
<button onclick="setName('200px');">200px</button>
<button onclick="setName('300px');">300px</button>
<button onclick="setName('400px');">400px</button>
<button onclick="setName('500px');">500px</button>
</p>
<p>インラインフレームのheight属性の値:<span id="sampleOutput"></span></p>
<iframe id="sample" src="http://alphasis.info/wp-content/uploads/2014/02/sampleIFrame.html" width="300px" height="100px">
<p>お使いのブラウザはiframeに対応していません。</p>
</iframe>
<button onclick="setName('100px');">100px</button>
<button onclick="setName('200px');">200px</button>
<button onclick="setName('300px');">300px</button>
<button onclick="setName('400px');">400px</button>
<button onclick="setName('500px');">500px</button>
</p>
<p>インラインフレームのheight属性の値:<span id="sampleOutput"></span></p>
<iframe id="sample" src="http://alphasis.info/wp-content/uploads/2014/02/sampleIFrame.html" width="300px" height="100px">
<p>お使いのブラウザはiframeに対応していません。</p>
</iframe>