图像提交在IE中不起作用

时间:2011-02-18 06:05:49

标签: image internet-explorer form-submit

我有以下代码提交表格

<div class="free-download">
   <input name="method_free"
      value="<TMPL_VAR lang_free_download>"
      type="image"
      src="images/free-download.png"
      alt="<TMPL_VAR lang_free_download>" />
</div>

它在firefox中运行良好,但是在Internet Explorer中它只是出于某种原因加载同一页面,任何想法?

由于

2 个答案:

答案 0 :(得分:1)

尝试输入标记中的form属性。

<input type="image" form="(ID of the form it belongs to)">

有时输入会在布局中丢失。

答案 1 :(得分:1)

您是否检查过您是否将method_free_x和method_free_y发回给您?似乎在使用图像提交时,您将获得单击的X和Y坐标。