我想使用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' />";
答案 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' />";