不想使用button提交form用image来提交form
2014-09-12来源:

代码如下:

<form method="post" action="formtest.html" target="_blank" name="formtest">

<input type="hidden" name="userid" value="userid">

<input type="hidden" name="username" value="username">

<input type="image" src="//www.submisscin.com/wap/imagesubmit.gif" border="0">

</form>

不想使用button提交form,想用好看点的image来提交

那样写就会提交两次了,input本身提交一次,js脚本再提交一次

使用图片做为提交按纽有如下几种方法:

1.

代码如下:

<form method="post" action="formtest.jsp">

<input type="hidden" name="userid" value="userid">

<input type="hidden" name="username" value="username">

<input type="image" src="//www.submisscin.com/wap/imagesubmit.gif" border="0">

</form>

就如楼主自已所写的,这样是完全可以的

2.

代码如下:

<script>

function formsubmit(){

document.formtest.action="formtest.jsp";

document.formtest.submit();

}

</script>

<form method="post" name="formtest">

<input type="hidden" name="userid" value="userid">

<input type="hidden" name="username" value="username">

<img src="//www.submisscin.com/wap/imagesubmit.gif" border="0" onclick="formsubmit()">

</form>

更多信息请查看IT技术专栏

推荐信息
Baidu
map