作为Javascript代码的一部分,在获取uri之后,我尝试从该uri获取图像,并将其插入到行开头的单元格中。以下是我的代码。它不起作用。我无法弄清楚我做错了什么/怎么做到这一点。我是否需要使用XMLHttpRequest()或者我可以使用源uri创建图像吗?有人可以帮忙吗?提前谢谢了!我也在代码中评论过。
var rowx =document.getElementById(rowid); //get that row that I want to insert image
var x =rowx.insertCell(0); //insert a cell
var uri= "baseuri"+rowid; //this is the uri where I get the image from
img = document.createElement('img');
img.scr= uri;
x.appendChild(img); //I tried x.innerHTML = img, but that didn't work either
答案 0 :(得分:2)
我注意到的第一件事是img.scr
代替img.src
。