<!DOCTYPE html> <html lang="zh"> <head> <Meta charset="UTF-8"> <title>Document</title> </head> <script src="http://www.jq22.com/jquery/jquery-3.3.1.js"></script> <body> <form method="post" enctype="multipart/form-data"> 早餐:<input type="text" name="goods" /><br> 午餐:<input type="text" name="goods" /><br> 晚餐:<input type="text" name="goods" /><br> <input type="button" name="sub" class="sub" value="提交" /> </form> </body> <script> $('.sub').click(function () { var arr =[]; $("input[name='goods']").each(function(){ arr.push($(this).val()); }) console.log(arr); }); </script> </html>
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。