Сообщение от XponyS
|
Вывод изображений
|
Типа намёк...
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<style type='text/css'>
#box img {
display: block;
}
</style>
<script type="text/javascript">
function Add() {
var o=document.createElement('img')
o.src='http://javascript.ru/forum/images/ca_serenity/misc/logo.gif'
document.getElementById('box').appendChild(o)
}
</script>
</head>
<body>
<div id='box'>
</div>
<input type='button' value='Add' onclick='Add()' />
</body>
</html>