0

私はもう試した:

$(document).on("event", window.iframe_name.doument.getElementsByTagName["body"][0], function(){
    //code
});

しかし、うまくいかないようです。

4

1 に答える 1

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)

    })
})
于 2012-10-31T14:27:16.727 に答える