Jump to content
  • 0

Смена картинки из массива


Villain
 Share

Question

Здравствуйте! У меня такая проблема, я захотел сделать картинку, которая при наведение будет меняться другой картинкой из массива, но проблема в том, что браузер пишет ошибку, пишет: "document.myimage - есть null или не евляется объектом". И кто знает из за чего такая ошибка?

Вот код:

 
<head>
<title>Динамический рисунок</title>
<script language="JavaScript">
function rand()
{
myimage= new Array (3);
myimage[0]="lenta.png";
myimage[1]="lenta1.png";
myimage[2]="lenta2.png";
i=Math.round(4*Math.random());
document.getElementById("fkng").src=document.myimage[i].src;
}
</script>
</head>
<body>
<img id="fkng" src="lenta.png" onMouseOver="rand();">
</body>

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
Здравствуйте! У меня такая проблема, я захотел сделать картинку, которая при наведение будет меняться другой картинкой из массива, но проблема в том, что браузер пишет ошибку, пишет: "document.myimage - есть null или не евляется объектом". И кто знает из за чего такая ошибка?

Охо-хо

document.getElementById("fkng").src=myimage;

Да, и переменная i может принимать значения от 0 до 4-х.

А у вас всего [0..2]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy