1. ホーム
  2. javascript

[解決済み] JavaScriptで画像を表示するには?

2022-03-05 11:48:21

質問

JavaScriptで画像を表示させようとしているのですが、その方法がわかりません。次のようなものがあります。

function image(a,b,c)
{
  this.link=a;
  this.alt=b;
  this.thumb=c;
}

function show_image()
{
  document.write("img src="+this.link+">");
}

image1=new image("img/img1.jpg","dsfdsfdsfds","thumb/img3");

HTMLで

<p><input type="button" value="Vytvor" onclick="show_image()" > </p>

のようなものをどこに置けばいいのかがわからない。 image1.show_image(); .

HTML?それとも別の場所で...

どのように解決するのですか?

を活用することができますね。 Javascript DOM API . 特に、見てください。 createElement() メソッドを使用します。

このような画像を作成する再利用可能な関数を作成することができます...

function show_image(src, width, height, alt) {
    var img = document.createElement("img");
    img.src = src;
    img.width = width;
    img.height = height;
    img.alt = alt;

    // This next line will just add it to the <body> tag
    document.body.appendChild(img);
}

それなら、こんな使い方も...。

<button onclick=
    "show_image('http://google.com/images/logo.gif', 
                 276, 
                 110, 
                 'Google Logo');">Add Google Logo</button> 

jsFiddleで動作例をご覧ください。 http://jsfiddle.net/Bc6Et/