Web开发中关于Form提交的问题的总结

类别:网站制作 点击:0 评论:0 推荐:

在Form中,type为submit的按钮会进行数据提交,一般按钮不会提交.
而type为image的图形按钮会进行数据提交.
其他情况都要使用JavaScript调用Form的Submit函数才能提交.

测试代码:

<html>

<head>
 <title>fmLogin</title>
 </head>

<body>
<script language="javascript">
function update(){
 Form1.submit();
}
</script>
<form name="Form1" method="post" action="abc.htm" id="Form1">
<!--<form id="abc" name="abc" method="POST" action="abc.htm">-->
  <input type="text" name="T1" size="20">
  <input type="reset" value="重置" name="B2">
  <input type="button" value="按钮" name="B3" OnClick="update();">
  <input type="image" name="ImageButton2" id="ImageButton2" tabindex="10" src="D:\long\logo_aurigadoc.gif" border="0" width="142" height="39" />
</form>
 
</body>

</html>

本文地址:http://com.8s8s.com/it/it31330.htm