我正在尝试检查用户单击按钮后是否已加载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.