私はもう試した:
$(document).on("event", window.iframe_name.doument.getElementsByTagName["body"][0], function(){
//code
});
しかし、うまくいかないようです。
私はもう試した:
$(document).on("event", window.iframe_name.doument.getElementsByTagName["body"][0], function(){
//code
});
しかし、うまくいかないようです。
まず、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)
})
})