我試過了幾個網站的一些HTML DOM代碼,但它不工作。它沒有添加任何東西。有沒有人有這個工作的例子?用javascript將圖像添加到html
this.img = document.createElement("img");
this.img.src = "img/eqp/"+this.apparel+"/"+this.facing+"_idle.png";
src = getElementById("gamediv");
src.appendChild(this.img)
但它沒有添加任何東西到div。 (gamediv)我也試過document.body,沒有結果。
在此先感謝。
this.img =使用document.createElement( 「IMG」); this.img.src =「img/eqp /」+ this.apparel +「/」+ this.facing +「_ idle.png」; src = document.getElementById(「gamediv」); src.appendChild(this.img); 現在改變了它,但它仍然不會在div gamediv中彈出。 – Anonymous 2010-04-29 08:51:01
@klausbyskov:感謝您修復錯字。 – 2010-04-29 08:53:14
@Anonymous:難道是'src'路徑不正確?你可以嘗試一個絕對路徑的圖像,你知道肯定存在嗎?如:'http:// www.google.com/intl/en_com/images/logo_plain.png' – 2010-04-29 08:54:44