From 03385cc9f4f157cec2e5fd05f35e6af646055908 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 14 Sep 2021 11:07:46 +0900 Subject: Web/API以下の文書内のリンクURLを正規化 (#2360) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正 --- files/ja/web/api/htmlscriptelement/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'files/ja/web/api/htmlscriptelement') diff --git a/files/ja/web/api/htmlscriptelement/index.html b/files/ja/web/api/htmlscriptelement/index.html index 738703ba6d..f7ace89728 100644 --- a/files/ja/web/api/htmlscriptelement/index.html +++ b/files/ja/web/api/htmlscriptelement/index.html @@ -5,7 +5,7 @@ translation_of: Web/API/HTMLScriptElement ---

{{ApiRef}}

-

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

+

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

プロパティ

@@ -49,11 +49,11 @@ translation_of: Web/API/HTMLScriptElement async {{domxref("Boolean")}} -

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

+

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 {{ HTMLElement("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.
+
注記: これらの属性の正確な処理の詳細は,大部分が歴史的な理由により,幾分複雑でHTMLの様々な局面に関連しています.従って,実装の要件は,仕様の至る所に散らばっている必要性によります.These algorithms describe the core of this processing, but these algorithms reference and are referenced by the parsing rules for {{ HTMLElement("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.

@@ -65,15 +65,15 @@ translation_of: Web/API/HTMLScriptElement crossOrigin {{experimental_inline}} {{domxref("DOMString")}} - Is a {{domxref("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. + Is a {{domxref("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 {{domxref("DOMString")}} -

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

+

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

-

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

+

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

@@ -170,6 +170,6 @@ alert("You read this alert because the script \"myScript2.js\" has been correctl
  • HTML {{ HTMLElement("script") }} element
  • HTML {{ HTMLElement("noscript") }} element
  • {{domxref("document.currentScript")}}
  • -
  • Web Workers (code snippets similar to scripts but executed in another global context)
  • +
  • Web Workers (code snippets similar to scripts but executed in another global context)
  • Ryan Grove's <script> and <link> node event compatibility chart
  • -- cgit v1.2.3-54-g00ecf