我遇到了麻烦,我使用了这些代码
<input type="image" name="btn_signup_free" id="btn_signup_free" />
在Firefox中它表现不错,但在互联网浏览器和谷歌浏览器中出现了“提交”#39;在左上角,我无法删除。 我从css放置了背景图片。 感谢你。
答案 0 :(得分:0)
为什么不使用jQuery呢?只需放置一个这样的图像:
<form method="post">
<img src="path_to_image/image.jpg" id="executeForm" alt="Some info about img if its not loaded" />
</form>
<script type="text/javascript">
$("#executeForm").click(function()
{
$(this).closest("form").submit();
});
</script>
最近我觉得使用img作为输入已经很老了。