Цитата:
|
Див умеешь делать?
Фон умеешь задавать?
|
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html" />
<meta name="author" content="admin" />
<title>Untitled - 1</title>
</head>
<body>
<input type='button' value='click me' onclick='click_me()'/>
</body>
<script>
function click_me() {
var div = document.createElement('div');
div.style.backgroundImage= 'url(https://www.google.ru/images/google_favicon_128.png)';
div.style.width = '128px'
div.style.height = '128px'
document.body.appendChild(div);
};
</script>
</html>