//construtor created
function Blog(text, date, image) {
this.show_image = function(src, width, height, alt){
var img = document.createElement("img");
img.src = src;
img.width = width;
img.height = height;
img.alt = alt;
document.body.appendChild(img);
}
}
//instance
var blog = [new Blog("hello!,Welcome to my blog1.", new Date("10/21/2012"),'show_image("images/overlay.png", 20,30, "Google Logo")'),
嘿,我在上面的实例中调用了一个图像,我已经编写了一个函数 show_image 执行该部分但图像没有显示...请告诉我这里有什么问题...请修改它...我是新来的在javascript编程中..我