在html中使用onmouseover?图片

时间:2014-03-04 04:52:56

标签: html

我想使用onmouserover放大我的图片,但是我的第二段代码无效。任何帮助都会受到重视。

工作:

<img src="http://www.google.com/intl/en_ALL/images.logo.gif" width="200" height="100" onmouseover="this.height=160;this.width=235;" onmouseout="this.height=100;this.width=200" />

不工作:

echo "<img src='../../img/Photos/Users/".$row['PICTURE']."' style='width: 30px; height: 30px;'
onmouseover='this.height=160;this.width=235;' onmouseout='this.height=100;this.width=200' />";

1 个答案:

答案 0 :(得分:0)

试试这个..

echo "<img src='../../img/Photos/Users/".$row['PICTURE']."' style='width: 30px; height: 30px;' onmouseover='this.style.height=160;this.style.width=235;' onmouseout='this.style.height=100;this.style.width=200' />";