码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript使用button提交表单

时间:2016-09-29 13:41:48      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

<form action="test.html" method="POST">
    <input type="button" value="提交"/>
</form>    
    
 <!-- 用提交表单,重要 -->
<script type="text/javascript">
  //定位提交按钮
   var inputElement = document.getElementsByTagName("input")[0];
  //为提交按钮添加单击事件
   inputElement.onclick = function(){
      //定位<form>标签,forms表示document对象中所有表单的集合,通过下标引用不同的表单,从0开始
       var formElement = document.forms[0];
       //提交表单,提交到action属性指定的地方
        formElement.submit();
     }   
 </script>

JavaScript使用button提交表单

标签:

原文地址:http://www.cnblogs.com/imzhuo/p/5919545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!