//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プログラミングで..私