开发者

A problem with dynamically created image

开发者 https://www.devze.com 2022-12-22 06:49 出处:网络
I have problem with dynamically created image (JavaScript). I want to change the innerHTML property of a table cell:

I have problem with dynamically created image (JavaScript). I want to change the innerHTML property of a table cell:

   var x=document.getElementById('myTable').rows;
   var y=x[0].cells;

   var myImg = document.createElement('img');
   myImg .setAttribute("alt","");
   myImg .setAttribute("style","vertical-align: middle; visibility:visible");
   myImg .setAttribute("src", "http://valid_link/ajax-loader.gif");

   y[0].innerHTML = myImg ;

but, as the result I see "[object 开发者_如何学运维HTMLImageElement]". How to show that picture ?


myImg is an object, not an HTML string. What if you try y[0].appendChild(myImg) instead?


innerHTML allows you to set the HTML content of a node. However, you are setting it with an element object rather than a string containing HTML. The object gets converted to a string, which is why you see [object HTMLImageElement] instead of the image.

To add an element object into page, you an use appendChild. The following example clears the cell and then appends the image element:

y[0].innerHTML = '';
y[0].appendChild(myImg);
0

精彩评论

暂无评论...
验证码 换一张
取 消