1.废话不多说,直接上代码
<form method="post" action="index.php" enctype="multipart/form-data"> 问题1:<input type="text" name="question" /><br> 问题2:<input type="text" name="question" /><br> 问题3:<input type="text" name="question" /><br> <input type="button" class="btn" value="提交" /> </form> <script> $('.btn').click(function () { var arr =[]; $("input[name='question']").each(function(){ arr.push($(this).val()); }) console.log(arr); }); </script>
2.结果