Tôi đang cố gắng kiểm tra xem iframe đã tải hay chưa sau khi người dùng nhấp vào nút.
Tôi có
$('#MainPopupIframe').load(function(){
console.log('load the iframe')
//the console won't show anything even if the iframe is loaded.
})
HTML
<button id='click'>click me</button>
//the iframe is created after the user clicks the button.
<iframe id='MainPopupIframe' src='http://...' />...</iframe>
Bất kỳ đề xuất?
Nhân tiện, iframe của tôi được tạo động. Nó không tải khi tải trang đầu tiên.
Nhấp chuột
—
Viktor S.