사용자가 버튼을 클릭 한 후 iframe이로드되었는지 확인하려고합니다.
나는 가지고있다
$('#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>
어떤 제안?
그건 그렇고, 내 iframe은 동적으로 생성됩니다. 초기 페이지로드와 함께로드되지 않습니다.
클릭
—
Viktor S.