<form name="abc" action="123.php">
<table>
<td width="10%"><a href="javascript:document.loginform.submit();"><img src="images/login.gif" width="62" height="19" border="0"></a></td>
</table>
</form>

解决方案 »

  1.   

    <input type="image" src="xxx.gif">
      

  2.   

    <form name=form1>
    <input type=text>
    <input type=image src="提交图片位置">
    <a href=javascript:document.form1.reset()><img src="重置图片位置"></a>
    </form>
      

  3.   

    <form>
    <input type=text name=tx>
    <input type=image src="xxxx.gif" name=submit>
    </form>
      

  4.   

    <form name="form1" method="post"  action="aa.php">            
     <input type="image" border="0" name="imageField" src="提交图片名">
     <a href="#"><img src="重置图片名" border=0></a> 
    </form>