Jump to content
  • 0

Создание картинки в IE 7


alex90aa
 Share

Question

В IE7 вышла проблема (В IE 6 работало)

Вот такая инструкция

document.getElementById(p).innerHTML="<img id='unit"+gid+"' width='70' height='70' src='"+imgsrc+"' border='0' onMouseOver='viewunit("+gid+")' onMouseOut='viewunit_no()' onClick='atunit("+gid+")'";

ни к чему не приводит.

как я разобрался в IE 7 нельзя так делать, нужно делать

var img = document.createElement('img')

img.src=imgsrc;

img.style.width=70;

img.style.height=70;

document.getElementById(p).appendChild(img)

Вопрос:

Как мне таким образом добавить к img onMouseOver и onMouseOut ?

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Оно работает в FireFox но в IE 7 onMouseOver не срабатывает, проверил и onClick тоже не работает, что делать?

Поискал на форумах нашел такое решение в FF и Опере:

img.addEventListener

В IE

img.attachEvent

решение:

var IE='\v'=='v';

if(IE) {

img.attachEvent( 'onmouseover', function( e ) {viewunit(gid) } );

}

else

{

img.addEventListener('mouseover', function() { viewunit(gid) }, false );

}

Правильно или есть другой способ?

Edited by alex90aa
Link to comment
Share on other sites

  • 0

Правильно будет зарегистрировать слушатель.

Вот правильный код:

var img = document.createElement('img');
img.src=imgsrc;
img.style.width=70;
img.style.height=70;
document.getElementById(p).appendChild(img);

if (document.addEventListener) { // Gecko
img.addEventListener('mouseover', function() { viewunit(gid); }, false);
} else if (document.attachEvent) { // IE, Opera
img.attachEvent('onmouseover', function() { viewunit(gid); });
} else {
img['onmouseover'] = function() { viewunit(gid); }
}

Или можно тупо:

var img = document.createElement('img');
img.src=imgsrc;
img.style.width=70;
img.style.height=70;
document.getElementById(p).appendChild(img);

img.onmouseover = function() {
viewunit(gid);
}

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