2015-10-14 76 views
0

我想改變形象,而mouseovermouseout內嵌JavaScript代碼不工作

我的代碼:

<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。請檢查並幫助我。 :(

+0

'this.src = this.rel'?從來沒見過它。 –

+0

什麼是你期待this.rel是?我看不出有任何理由爲它有一個值。 –

回答

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')" /> 
+0

謝謝你親愛的:) – Chinmay235

+0

你welcome.you可以接受答案,如果我的答案幫助你。 – h0mayun