imageObject.heightは、image要素のheight属性の値を取得、もしくは、設定するプロパティ。
height属性には、画像の高さをピクセル単位の数値で指定できる。
構文
取得
var $height = $imageElementReference.height;
戻り値
image要素のheight属性の値。画像の高さを示すピクセル単位の数値。
設定
$imageElementReference.height = 高さ;
- 高さ
- 画像の高さをピクセル単位の数値で指定。
サンプル
image要素のheight属性の値:
サンプルの動作について
- 「99px」ボタンをクリックすると、サンプル画像の高さを「99px」にする。「image要素のheight属性の値:」の右横に「99」と表示する。
- 「198px」ボタンをクリックすると、サンプル画像の高さを「198px」にする。「image要素のheight属性の値:」の右横に「198」と表示する。
- 「297px」ボタンをクリックすると、サンプル画像の高さを「297px」にする。「image要素のheight属性の値:」の右横に「297」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setAlt( $height ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.height = $height;
var $height = $elementReference.height;
document.getElementById( "sampleOutput" ).innerHTML = $height;
}
</script>
function setAlt( $height ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.height = $height;
var $height = $elementReference.height;
document.getElementById( "sampleOutput" ).innerHTML = $height;
}
</script>
HTML
<p>
<button onclick="setAlt('99');">99px</button>
<button onclick="setAlt('198');">198px</button>
<button onclick="setAlt('297');">297px</button>
</p>
<p>image要素のheight属性の値:<span id="sampleOutput"></span></p>
<image src="http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg" alt="サンプル画像" id="sample" width="300px" height="198px">
<button onclick="setAlt('99');">99px</button>
<button onclick="setAlt('198');">198px</button>
<button onclick="setAlt('297');">297px</button>
</p>
<p>image要素のheight属性の値:<span id="sampleOutput"></span></p>
<image src="http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg" alt="サンプル画像" id="sample" width="300px" height="198px">