="javascript:window.parent.location.reload();"/你要达到什么效果,这个和提交冲突,,可能在请求发出前页面就刷没了,请求自然发布出去
先把这个全页面刷新去掉,想刷哪里就指定好了,可以window.parent.frames[index].location.reload() 刷新指定的frame

解决方案 »

  1.   

    正解:
    <td width="71" align="left" valign="top"><input type="image" name="imageField" src="images/20.jpg" onclick="javascript:window.parent.frames['right'].location.reload();"/></td>
      

  2.   


     同时刷新多个 frames 
    <td width="71" align="left" valign="top"><input type="image" name="imageField" src="images/20.jpg" onclick="refreshFrames()"/></td><script>
      function refreshFrames(){
       window.parent.frames['right'].location.reload();
       window.parent.frames['left'].location.reload(); }
    </script>