diff options
Diffstat (limited to 'files/ja/web/html/global_attributes/is/index.html')
-rw-r--r-- | files/ja/web/html/global_attributes/is/index.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/files/ja/web/html/global_attributes/is/index.html b/files/ja/web/html/global_attributes/is/index.html new file mode 100644 index 0000000000..642dd49c0c --- /dev/null +++ b/files/ja/web/html/global_attributes/is/index.html @@ -0,0 +1,67 @@ +--- +title: is +slug: Web/HTML/Global_attributes/is +tags: + - Global attributes + - HTML + - Reference + - is +translation_of: Web/HTML/Global_attributes/is +--- +<div>{{HTMLSidebar("Global_attributes")}}</div> + +<p><span class="seoSummary"><strong><code>is</code></strong> <a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a>で、標準の HTML 要素が定義されたカスタム内蔵要素のように振舞うよう指定することができます (詳しくは <a href="/ja/docs/Web/Web_Components/Using_custom_elements">カスタム要素の使用</a> を参照してください)。</span></p> + +<p>この属性は、指定されたカスタム要素名が現在の文書で正常に<a href="/ja/docs/Web/API/CustomElementRegistry/define">定義され</a>、適用されている要素型が拡張されている場合にのみ使用します。</p> + +<h2 id="Examples" name="Examples">例</h2> + +<p>次のコードは、 <a href="https://github.com/mdn/web-components-examples/tree/master/word-count-web-component">word-count-web-component</a> の例から取得されたものです (<a href="https://mdn.github.io/web-components-examples/word-count-web-component/">ライブで参照</a>)。</p> + +<pre class="brush: js notranslate">// 要素のクラスを作成 +class WordCount extends HTMLParagraphElement { + constructor() { + // Always call super first in constructor + super(); + + // Constructor contents ommitted for brevity + ... + + } +} + +// 新しい要素を定義 +customElements.define('word-count', WordCount, { extends: 'p' });</pre> + +<pre class="brush: html notranslate"><p is="word-count"></p></pre> + +<h2 id="Specifications" name="Specifications">仕様書</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">仕様書</th> + <th scope="col">状態</th> + <th scope="col">備考</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName('HTML WHATWG', "custom-elements.html#attr-is", "is")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td></td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2> + +<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div> + +<p>{{Compat("html.global_attributes.is")}}</p> + +<h2 id="See_also" name="See_also">関連情報</h2> + +<ul> + <li>すべての<a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a>。</li> +</ul> |