Сообщение от MyBigFriend
|
. Какой код нужно написать, чтобы его правильно отобразило на странице?
|
http://javascript.ru/tutorial/dom/modify
вверху есть ссылочка
Курсы javascript
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<script>
function Obj(top, left, width, height)
{ var d = document.createElement("div"),
c = d.style;
c.backgroundColor = "#00FF33";
c.width = width + "px";
c.height = height + "px";
c.position = "absolute";
c.top = top + "px";
c.left = left + "px";
document.body.appendChild(d);
return d
}
var obj = new Obj(0, 0, 100, 150),
div = new Obj(0, 200, 100, 100);
div.style.backgroundColor = "red"
</script>
</body>
</html>