DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> 僅img元素創建後不添加到文檔中會執行onload事件的解決方法
僅img元素創建後不添加到文檔中會執行onload事件的解決方法
編輯:關於JavaScript     
示例
復制代碼 代碼如下:
<!DOCTYPE HTML>
<HTML>
<HEAD>
<meta charset="utf-8" />
<title>僅img元素創建後卻不添加到文檔中會執行onload事件</title>
</HEAD>
<BODY>
<script>
var img = document.createElement('img');
img.src = "http://www.sinaimg.cn/rny/sinamail57/skins/110318/17/logo.jpg";
img.onload = function(){alert(this.width);};
</script>
</BODY>
</HTML>

iframe,script必須添加到文檔中後才執行回調。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved