タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

iframeとhtmlに関するkefi3104のブックマーク (1)

  • IFrameオブジェクト | JavaScript プログラミング解説

    Properties - HTMLIFrameElement - Web APIs | MDN contentDocument IE8より前はcontentDocumentをサポートしないため、それにも対応させるためにはIFrame.contentWindow.documentを使用します。よってクロスブラウザとするには、 var contentDocument = IFrame.contentDocument || IFrame.contentWindow.document; とします。contentDocument property (Internet Explorer) | MSDN body要素へのアクセス IFrameのbody要素へは、Iframe.contentDocument.bodyでアクセスできます。 取得タイミング contentDocumentは、IFrameオブジ

  • 1