how to refer iframe within iframe

前端 未结 2 1113
温柔的废话
温柔的废话 2021-01-26 20:21

I want to refer iframe which is inside another iframe


<         


        
2条回答
  •  长情又很酷
    2021-01-26 21:00

    Use contents() to get inside first frame window once it has loaded:

    $('iframe').on('load', function(){
      var $secondFrame = $(this).contents().find('iframe');
          $secondFrame.attr('src', someUrl)    
    })
    

提交回复
热议问题