Frame/IFrame onload 事件
Iframe / Frame 对象的 onload 事件在 frame 或者 iframe 载入完成后被触发
语法
onload="JavaScriptCode"
浏览器支持
所有主要浏览器都支持 onload 事件
范例
在frame载入完成后立即弹出 "Frame 已加载"
<script> function load() { alert("Frame 已加载"); } </script> <frameset cols="50%,50%"> <frame src="/static/media/html/frame_a.html" onload="load()"> <frame src="/static/media/html/frame_b.html"> </frameset>
范例 2
在 iframe载入完成后立即弹出 "Iframe 已加载"
<script> function load() { alert("Iframe 已加载"); } </script> </head> <iframe onload="load()" src="/static/media/html/frame_a.html"> <p>Your browser does not support iframes.</p> </iframe>