document.getElementById( id )は、引数「id」に指定したid属性値の要素への参照を返すメソッド。
構文
var $element = document.getElementById( id );
引数
- id
- id属性値を指定。
戻り値
指定したid属性値の要素への参照。
サンプル
サンプルの動作について
「sample()」ボタンをクリックすると、ボタンの下に「Hello World!」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function sample() {
document.getElementById( "sample" ).innerHTML = "Hello World!";
}
</script>
function sample() {
document.getElementById( "sample" ).innerHTML = "Hello World!";
}
</script>
HTML
<button onclick="sample();">sample()</button>
<p id="sample"></p>
<p id="sample"></p>