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>

 

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...