Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. Web API
  3. HTMLIFrameElement
  4. contentDocument

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

HTMLIFrameElement: contentDocument プロパティ

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

iframe とその iframe の親文書が同一オリジンであった場合、Document(すなわち、インラインフレーム内の閲覧コンテキスト内にあるアクティブな文書)を返します。そうでなければnull を返します。

contentDocument の例

js
const iframeDocument = document.querySelector("iframe").contentDocument;iframeDocument.body.style.backgroundColor = "blue";// これにより iframe が青くなる

仕様書

Specification
HTML
# dom-iframe-contentdocument

ブラウザーの互換性

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp