blob: ac0453ddfcb8c32c66ee7f86b5869710ca6c94d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
---
title: srcdoc
slug: Web/API/HTMLIFrameElement/srcdoc
translation_of: Web/API/HTMLIFrameElement/srcdoc
---
<div>{{APIRef('HTMLIFrameElement')}}</div>
<p>{{domxref("HTMLIFrameElement")}} の <strong><code>srcdoc</code></strong> プロパティは、ページの内容を指定します。</p>
<h2 id="Example_of_contentDocument" name="Example_of_contentDocument">例</h2>
<pre class="brush: js highlight:[3] line-numbers language-js">var iframe = document.createElement("iframe");
iframe.srcdoc = `<!DOCTYPE html><p>Hello World!</p>`;
document.body.appendChild(iframe);</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', '#attr-iframe-srcdoc', 'HTMLIFrameElement: srcdoc')}}</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("api.HTMLIFrameElement.srcdoc")}}</p>
|