当图像悬停发生时,我正在尝试找到一种不放大表格的方法。这是我的代码。谢谢
<script language="javascript" type="text/javascript">
//opacity: 0.5,
$(document).ready(function () {
$("#thServer img").hover(function () {
$(this).stop().animate({ width: 70, height: 70 }, 100);
}, function () {
$(this).stop().animate({ width: 50, height: 50 }, 100);
});
});
</script>
<table style="border-style: solid">
<tr>
<th id="thServer">
<img src="NewVersion.png" width="50" height="50"></img>
</th>
</tr>
<tr>
<td>
</td>
</tr>
</table>