Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLScriptElement

この文書は翻訳中です。他国語のままの部分などがあるのはその為です。
是非お気軽に MDN に登録して翻訳に参加し、私たちの手助けをして下さい!

DOMの ScriptオブジェクトはHTMLScriptElement (または HTML 4 HTMLScriptElement)インターフェイスに具現化されます.それは通常のelementオブジェクトインターフェイスに加えて(継承によって利用可能),<script> 要素のレイアウトおよび表現を扱う特別なプロパティとメソッドを提供します.

プロパティ

親である HTMLElementからプロパティを継承しています.

Name Type Description
type DOMString スクリプトのMIME typeを表します.これはtype属性を反映します.
src DOMString

使用される外部スクリプトリソースのアドレスを表します.これは src属性を反映します.

htmlFor DOMString [Description missing]
event DOMString [Description missing]
charset DOMString 外部スクリプトリソースの文字エンコードを表します.これはcharset属性を反映します.
async Boolean

asyncdefer属性はboolean属性です.スクリプトがどのように実行されるべきかを示します. defer および async 属性は,src 属性が無ければ指定してはならない.

これら2つの属性値を用いて選択可能な3つのモードがあります.async属性があれば,スクリプトは可能な限り非同期的に実行されます.async属性が無くdefer属性があれば. スクリプトはページのパースが完了した時点で実行されます.両方の属性があれば,スクリプトはユーザーエージェントによるページのパース完了を待つこと無く,フェッチ後,直ちに実行されます.

注記: これらの属性の正確な処理の詳細は,大部分が歴史的な理由により,幾分複雑でHTMLの様々な局面に関連しています.従って,実装の要件は,仕様の至る所に散らばっている必要性によります.These algorithms describe the core of this processing, but these algorithms reference and are referenced by the parsing rules for <script> start and end tags in HTML, in foreign content, and in XML, the rules for the document.write() method, the handling of scripting, etc.

The defer attribute may be specified even if the async attribute is specified, to cause legacy Web browsers that only support defer (and not async) to fall back to the defer behavior instead of the synchronous blocking behavior that is the default.

defer Boolean
crossOrigin DOMString Is a DOMString that corresponds to the CORS setting for this script element. See CORS settings attributes for details. It controls, for scripts that are obtained from other origins, whether error information will be exposed.
text DOMString

IDLのtext属性は,すべてのテキストノード(Text nodes)内容の連結を返さなければなりません.(コメントや要素のような他のノードを無視すれば)テキストノードは,木構造(tree)上の順序でscript要素の子要素です.設定上,これはIDLのtextContent属性と同様に機能せねばなりません.

注記:  document.write() メソッドを用いて, <script> 要素を挿入した時,実行されます(典型的には同期的に).しかし,  innerHTML and outerHTML 属性を用いて挿入した場合,結局何も実行されません.

メソッド

固有のメソッドはありません;親である, HTMLElementから継承しています.

例#1: スクリプトを動的にインポートする

新しいスクリプトをドキュメント内にインポート可能にするためimportScript(url[, onloadFunction])と名付けた関数を生成しましょう.インポートはドキュメントの(既存の)<script>の直前に(新たな)<script>ノードを生成して行ないます.既存の<script>は,下記のコード(document.currentScript通じて取得)を提供するものです.これらのスクリプトは非同期的に実行されます.詳細はdeferおよびasyncプロパティを参照.

function loadError (oError) {
  throw new URIError("The script " + oError.target.src + " is not accessible.");
}

function importScript (sSrc, fOnload) {
  var oScript = document.createElement("script");
  oScript.type = "text\/javascript";
  oScript.src = sSrc;
  oScript.onerror = loadError;
  if (fOnload) { oScript.onload = fOnload; }
  document.currentScript.parentNode.insertBefore(oScript, document.currentScript);  
}

同じことだがスクリプトをdocument.currentScript要素の直前に加える代わりに,<head> タグの末尾の子として加えています. 

var importScript = (function (oHead) {

  function loadError (oError) {
    throw new URIError("The script " + oError.target.src + " is not accessible.");
  }

  return function (sSrc, fOnload) {
    var oScript = document.createElement("script");
    oScript.type = "text\/javascript";
    oScript.src = sSrc;
    oScript.onerror = loadError;
    if (fOnload) { oScript.onload = fOnload; }
    oHead.appendChild(oScript);  
  }

})(document.getElementsByTagName("head")[0]);

使用法:

importScript("myScript1.js");
importScript("myScript2.js", /* onload 関数: */ function () { 
alert("You read this alert because the script \"myScript2.js\" has been correctly loaded."); });

仕様

仕様 地位 コメント
WHATWG HTML Living Standard
The definition of 'HTMLScriptElement' in that specification.
Living Standard No change from HTML5.
HTML5
The definition of 'HTMLScriptElement' in that specification.
勧告案 The following properties are now obsolete: htmlFor,.
Document Object Model (DOM) Level 2 HTML Specification
The definition of 'HTMLScriptElement' in that specification.
勧告 No change from Document Object Model (DOM) Level 1 Specification.
Document Object Model (DOM) Level 1 Specification
The definition of 'HTMLScriptElement' in that specification.
勧告 Initial definition.

ブラウザ互換性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 1.0 1.0 (1.7 or earlier) (有) (有) (有)
async (有) 3.6 (1.9.2) 10 未サポート (有)
defer (有) 3.5 (1.9.1)

4 (follows a spec of its own)

10 (by the spec)

未サポート (有)
crossOrigin WebKit bug 81438 13 (13) バグ 696301 未サポート 未サポート WebKit bug 81438
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (有) 1.0 (1.0) (有) (有) (有)
async (有) 1.0 (1.0) 未サポート ? (有)
defer (有) 1.0 (1.0) 未サポート ? (有)
crossOrigin ? ? ? ? ?

Gecko限定の注記

Starting in Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1), inserting script elements that have been created by calling document.createElement("script") into the DOM no longer enforces execution in insertion order. This change lets Gecko properly abide by the HTML5 specification. To make script-inserted external scripts execute in their insertion order, set the async property to false on them.

Also, <script> elements inside <iframe>, <noembed> and <noframes> elements are now executed, for the same reasons.

参考

ドキュメントのタグと貢献者

 このページの貢献者: khalid32, acid
 最終更新者: khalid32,