内联JavaScript代码无法正常工作

时间:2015-10-14 10:31:32

标签: javascript image

我想在mouseovermouseout

时更改图片

我的代码:

<img src="convert.php?file=image.gif" title="Preview image"
   width="100" height="100" rel="image.gif"
   onmouseover="this.src=this.rel"
   onmouseout="this.src='convert.php?file='+this.rel" />

this.rel获取undefined。请检查并帮助我。 :(

1 个答案:

答案 0 :(得分:2)

<img src="convert.php?file=image.gif" title="Preview image"
   width="100" height="100" rel="image.gif"
   onmouseover="this.src=this.getAttribute('rel')"
   onmouseout="this.src='convert.php?file='+this.getAttribute('rel')" />