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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
alex90aa
В 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
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.