タグ

ブックマーク / wiki.bit-hive.com (1)

  • JavaScript インラインフレーム(iframe)関連 - とみぞーノート

    iframeのwindow,documentの取得方法はIEとMozilla系(NN,FireFox)で異なる。 IEはframes配列のwindow,documentプロパティから取得できる。Mozilla系はiframeエレメントのcontentWindow,contentDocumentプロパティから取得できる。 IEでもMozilla系と同じくiframeエレメントのプロパティから取得することもできるが、contentDocumentについてはIEには存在しないので、documentはcontentWindow.documentとしてcontentWindow経由で取得しなければならない。 iframeエレメントのcontentWindow,contentDocumentプロパティから取得する iframe = document.getElementById(id); // ifr

  • 1