<html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <script language="javascript"> arrimg=new Array(); //СОЗДАЕМ МАССИВ КАРТИНОК arrimg[0]=new Image(); arrimg[0].src="kartinka.jpg"; function start() { document.getElementById("pict1").innerHTML = arrimg[0].src ; } </script> <span id="pict1"> Картинка 1 </span> <div> <input type="button" value="Start" onclick="start();" /> </div> </body> </html>
document.getElementById("pict1").innerHTML = arrimg[0]
document.getElementById("pict1").appendChild(arrimg[0]);