我有以下数组:
function theMiddle(){
var arrayTheMiddle = new Array (showName.theMiddle +"<br />" + beginingTime.theMiddle +" <br />" + network.abc +"<br />" + duration.thirty +"<br />" + rating.general +"<br />" + description.theMiddle +"<br />" + showImagetheMiddle);
document.getElementById("gridbar").innerHTML=(arrayTheMiddle);
}
该数组中的最后一个对象 showImagetheMiddle 是具有以下代码的图像:
var showImagetheMiddle = new Image();
showImagetheMiddle.src = 'abc.jpg';
我的所有对象都出现在我的网页上,但 showImagetheMiddle 给了我以下错误:
[对象 HTMLImageElement]
我环顾四周,但发现了更复杂的显示图像的方法,我想保持简单并将图像添加到现有数组中(如上所示)。这可能吗?如果不是,我在这里做错了什么?
非常感激任何的帮助!