document.scriptsプロパティ

document.scriptsは、script要素の配列を返すプロパティ。

構文

$scripts = document.scripts;

戻り値

script要素の配列。

サンプル

script要素の数:

サンプルの動作について

「scripts」ボタンをクリックすると、「script要素の数:」の右横に「」と表示する。

サンプルのソースコード

JavaScript

<script type="text/javascript">
function sampleGetFormsLength() {
    var $nodeList = document.scripts;
    document.getElementById( "sample" ).innerHTML = $nodeList.length;
}
</script>

HTML

<button onclick="sampleGetFormsLength();">scripts</button>
<div style="margin: 1em;">
    script要素の数:<span id="sample"></span>
</div>

スポンサード リンク

カテゴリー: Documentオブジェクト, DOM, JavaScript, プロパティ, リファレンス パーマリンク