2012-10-31 72 views

回答

0

首先,您必須等待加載iFrame。

$(function(){ 
    $('#iFrame').load(function(){ 
     //then set up some access points 
     var frame = document.getElementById('iFrame'); // referance to the iframe 
     var frameWindow = frame.contentWindow; // referance the iframes window 
     var contents = $(this).contents(); // contents of the iframe 

     frameWindow.$('body').on(//your code here) 

    }) 
}) 
相關問題