>Форум Mozilla Россия http://forum.mozilla-russia.org/index.php >Разработка http://forum.mozilla-russia.org/viewforum.php?id=18 >Динамическо создание картинки http://forum.mozilla-russia.org/viewtopic.php?id=18665 |
Kat > 22-08-2007 16:50:11 |
Здравствуйте всем, подскажите, пожалуйста, почему при динамическом создании картинки она не отображается в ff? Выделить код Код:function Picture(src) { //это src картинки this.src = src; this.createPicture = function() { this.blockPicture = document.create('div'); this.blockImage = document.createElement('image'); this.blockImage.style.width= 200 + "px"; this.blockImage.height.height = 125 + "px"; //вот здесь устанавливается путь к картинке this.blockImage.src = this.key; this.blockImage.alt = ""; this.blockImage.style.background = "#eee"; this.blockImage.className = "image"; //здесь созданная картинка добавляется в блок this.blockPicture.appendChild(this.blockImage); //здесь блок добавляется в страницу document.body.appendChild(this.blockPicture); блок добавляется а картинка в него нет. } |
Unghost > 23-08-2007 21:16:50 |
==> Разработка |