jquery获取多个相同name的input框的value值
Posted 十月围城小童鞋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery获取多个相同name的input框的value值相关的知识,希望对你有一定的参考价值。
<!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>
以上是关于jquery获取多个相同name的input框的value值的主要内容,如果未能解决你的问题,请参考以下文章
jQuery如何获取多个input输入框的值,并存放在一个数组中
jquery如何判断多个输入框是不是有值,在线等啊~~~~~~~~~~~~~~~