LoginSignup
126
126

More than 5 years have passed since last update.

iframe内のDOMを操作する方法

Posted at

※IE8+,FF,Chrome,Safari で動作確認済み

var $iframe = $('#some_iframe');

// iframe内のコンテンツのdocumentオブジェクト
var ifrmDoc = $iframe[0].contentWindow.document;

// あとはいつも通りでおk
var $body = $('body', ifrmDoc);
var $ele  = $('#some_element', ifrmDoc);

 

onloadイベントは

$(function() {

    $('#some_iframe').on('load', function(e) {
        var $body = $('body', this.contentWindow.document);
            :
            :
    });

});
126
126
6

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
126
126