imageObject.srcは、image要素のsrc属性の値を取得、もしくは、設定するプロパティ。
src属性には、ドキュメントに埋め込む画像のURLを指定する。src属性値を変更することで、画像を切り替えることができる。
構文
取得
var $src = $imageElementReference.src;
戻り値
image要素のsrc属性の値。ドキュメントに埋め込んだ画像のURL。
設定
$imageElementReference.src = "URL";
- URL
- ドキュメントに埋め込む画像のURLを指定する。
サンプル
image要素のsrc属性の値:
サンプルの動作について
「1」~「5」のボタンをクリックすると、画像を切り替える。「image要素のsrc属性の値:」の右横に表示中の画像のURLを表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function setSrc( $src ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.src = $src;
var $src = $elementReference.src;
document.getElementById( "sampleOutput" ).innerHTML = $src;
}
</script>
function setSrc( $src ) {
var $elementReference = document.getElementById( "sample" );
$elementReference.src = $src;
var $src = $elementReference.src;
document.getElementById( "sampleOutput" ).innerHTML = $src;
}
</script>
HTML
<p>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg');">1</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/2.jpg');">2</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/3.jpg');">3</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/4.jpg');">4</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/5.jpg');">5</button>
</p>
<p>image要素のsrc属性の値:<span id="sampleOutput"></span></p>
<image src="http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg" alt="サンプル画像" id="sample">
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg');">1</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/2.jpg');">2</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/3.jpg');">3</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/4.jpg');">4</button>
<button onclick="setSrc('http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/5.jpg');">5</button>
</p>
<p>image要素のsrc属性の値:<span id="sampleOutput"></span></p>
<image src="http://alphasis.info/library/javascript/jquery/plugin/cycle/sample/1.jpg" alt="サンプル画像" id="sample">