我正在尝试创建一组图像对象,但很挣扎。每个对象将包含一个图像和图像的标题。
当我将以下代码粘贴到 Firebug 中进行检查时,它可以正常工作:
示例 1
var imageArray = new Array();
imageArray[0] = new Image();
console.log(imageArray[0]); //result is <img>
imageArray[0].src = "my-image-01.png";
console.log(imageArray[0]); // result is <img src="my-image-01.png"/>
imageArray[0] = {imageCaption: "A caption for the image"}; //an object
console.log(imageArray[0].imageCaption) //result is: A caption for the image
imageArray[1] = new Image()
... ETC
但是,我认为以下内容会更有意义,但它不断抛出错误,我不明白为什么。
示例 2
var imageArray = new Array();
imageArray[0]= {
image01: new Image(),
image01.src: "my-image-01.png", //"SyntaxError: missing : after property id"
imageCaption: "An image caption"
};
imageArray[1] = {
image02: new Image().
image02.src: "my-image-02.png",
imageCaption: "Another image caption"
}
谁能解释上面的代码有什么问题?我发布的第一个示例是我应该使用的方法吗?非常感谢