//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")'),
嘿m調用上面的實例中的圖像,因爲我寫了一個函數show_image執行該部分,但圖像沒有得到顯示...請告訴我這裏有什麼問題...請修改它...我是JavaScript編程新手.. 我如何在JavaScript對象中顯示圖像作爲屬性
您是否在某處調用了show_image()? – Uby
當調用函數show_images時,您已將其封裝在單引號內。刪除它,以便函數得到執行。 – hop
嘿它的內部的實例,你可以看到它的第三個屬性,其中m調用overlay.png圖像 – king