iframe onload
iframe onload
資料來源:http://jsgears.com/viewthread.php?tid=279
var aa = document.getElementById(‘test’);
aa.onload = function() {
var b = aa.contentWindow.document;
alert(‘done!’);
};
————-
資料來源:http://www.runoob.com/jsref/event-frame-onload.html
<!DOCTYPE html>
<html>
<head>
<script>
function load()
{
alert(“Iframe is loaded”);
}
</script>
</head>
<body>
<iframe onload=”load()” src=”http://www.w3cschool.cc”>
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
————–
資料來源:http://www.dyn-web.com/tutorials/iframes/onload/
<iframe id=”ifrm” src=”demo.html” onload=”doSomething()”></iframe>
<script type=”text/javascript”>
document.getElementById(‘ifrm’).onload = function() {
// put your awesome code here
}
</script>