125
126

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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);
			:
			:
	});

});
125
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
125
126

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?