jquey操作Iframe

607 ワード

jquery操作iframeの記録
  • サブウィンドウ呼び出し親ウィンドウのメソッド
  • //        xxx  
    window.parent.xxx();
    //            
    window.top.xx() ;
    //            
    $('#ele', window.parent.document);
    
  • サブウィンドウ親ウィンドウのイベント
  • をトリガー
     //          ,        ,           jquery       
    $(dom1, window.parent.document).trigger('click'); //     
    
    //     
    window.parent.$(dom1, window.parent.document).trigger('click');
    
  • 親ウィンドウで子ウィンドウの要素を検索
  • //   Iframe(id iframeId)  div(id ele)  
    $('#iframeId').contents().find('div#ele') ;