Example
< HTML>
Onload event will be executed only after the img element is created but not added to the document title>
<script> <br>var img = document.createElement('img'); <br>img.src = "http:// /www.sinaimg.cn/rny/sinamail57/skins/110318/17/logo.jpg"; <br>img.onload = function(){alert(this.width);}; <br></script>
iframe, script must be added to the document before the callback is executed.