如何在html表中使图像不可点击?

时间:2012-03-28 15:16:20

标签: html

我在下面的表行中有一个img。我的问题是图像被点击并重定向到主页但这种行为只在firefox而不是IE中看到。如何避免图像被点击?

代码:

<table>
<tr>
    <td colspan="3" width="414" height="231" >
         <img id="pic1" src="" border="0" runat="server" alt="" /><br />
    </td>
</tr>
<table>

1 个答案:

答案 0 :(得分:0)

<table>
    <tr>
        <td colspan="3" width="414" height="231" >
             <img id="pic1" src="" border="0" runat="server" alt="" /><br />
        </td>
    </tr>
</table>

您忘记关闭表格标签:D