码迷,mamicode.com
首页 > Web开发 > 详细

js总结(11)一个页面同时提交多个form表单的实施

时间:2019-08-22 13:30:47      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:head   src   height   body   length   test   content   rip   bsp   

父页面的代码

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Index</title>
       <script src="js/jquery-1.9.min.js"></script>
    </head>
    <body>
        <iframe src="form.php" width="800px" height="600px"></iframe>
        <iframe src="form.php" width="800px" height="600px"></iframe>
        <iframe src="form.php" width="800px" height="600px"></iframe>
        <iframe src="form.php" width="800px" height="600px"></iframe>
        <iframe src="form.php" width="800px" height="600px"></iframe>
        <iframe src="form.php" width="800px" height="600px"></iframe>
        <button>aa</button>
    </body>
     <script type="text/javascript">
            function submitAll(){
                var ifms = document.getElementsByTagName(‘iframe‘);
                for (var i = 0; i < ifms.length; i++) {
                    var win = (ifms[i].contentWindow || ifms[i]);
                    win.submitMe();
                }
            }
  $("button").click(
  	function () {
  	submitAll()
  	})
        </script>
</html>

  form表单的页面

 <script type="text/javascript">
            function submitMe(){
                document.getElementById(‘testForm‘).submit();
            }
            function submitAll(){
                window.parent.submitAll();
            }
        </script>

  

 

js总结(11)一个页面同时提交多个form表单的实施

标签:head   src   height   body   length   test   content   rip   bsp   

原文地址:https://www.cnblogs.com/nice2018/p/11393532.html

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