0
我已經試過:如何將事件添加到jQuery中動態創建的iframe的主體?
$(document).on("event", window.iframe_name.doument.getElementsByTagName["body"][0], function(){
//code
});
,但它似乎並沒有工作。
我已經試過:如何將事件添加到jQuery中動態創建的iframe的主體?
$(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)
})
})
頁面與您的網頁位於同一個域中嗎? –
是的,它是在相同的 – user1777122
你能發佈iframe的標記嗎? –