Return ID of all iframes in a page

前端 未结 3 725
我寻月下人不归
我寻月下人不归 2021-01-18 22:38

Because of the widget format I\'m working with I have a page which has multiple iframes embedded within iframes. I won\'t paste the code as it\'s vast and unwieldy but it is

3条回答
  •  盖世英雄少女心
    2021-01-18 22:56

    From the most embedded iframe:

    var ids = (function up( context, ids ){ 
       ids = ids || []; 
       // proceed if we're not at the top window yet
       if( context !== window.top){
          // point context to parent window (or top if no parent).
          context = context.parent || window.top; 
          // get the id of the first iframe in parent window; 
          // this will break if there are sibling iframes
          ids.push(context.document.getElementsByTagName('iframe')[0].id); 
    
          // recursive call to traverse parents          
          return up(context, ids); 
       } else {
          // otherwise return the list of ids
          return ids; 
       }
       }(this)); // 'this' is the initial context - current window
    
       console.log( ids );
    

提交回复
热议问题