Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以检查 iframe 中的内容何时加载。
我有一个隐藏的 iframe,我不想在 iframe 内的网页/网站加载之前显示它。
我尝试了以下,并没有真正为我工作:
$('iframe').load(function() { ; });
那可能吗?
这不能跨域完成,只能在本地完成。
<iframe src="/amp" id="iframeID"></iframe> document.getElementById("iframeID").contentWindow.onload = function(){ alert('loaded'); };