LoginSignup
11
15

More than 5 years have passed since last update.

iframeの子要素を取得したいときはcontents()をつかう!

Posted at

contents()

要素のテキストノードも含めた全子要素を取得する。対象要素がiframeであれば、呼び出されるコンテンツのDocumentを選択する。

使い方

ex) iframeの中身のdivタグの背景色を全て黒色にする

$(function(){
    var iframe = $('iframe').contents();
    iframe.find('div').css('background-color', 'black');
});
11
15
0

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
11
15