使用jQuery循环从文本框中获取数据

时间:2013-10-29 19:28:43

标签: javascript jquery

我正在尝试捕获页面上的文本框对的值。

我正在捕捉它们,但它并没有完全像我想要的那样工作,因为我正在获取重复的数据。

这是我的HTML代码:

    <div id="links">
        <div id="group1">
             <input type="text" name="linkTitle" value="Google">
             <input type="text" name="linkURL" value="www.google.com">
        </div>

        <div id="group2">
             <input type="text" name="linkTitle" value="Yahoo">
             <input type="text" name="linkURL" value="www.Yahoo.com">
        </div>

    </div>

    <div>
        <input id="btnSaveLinks" type="button" value="Save">
    </div>

这是javascript:

    $("#btnSaveLinks").on('click', function() {
       $('#links input[type=text]').each(function () {
          var title = $(this).attr("value");
          var url = $(this).attr("value");
          console.log('title: ' + title);
          console.log('url: ' + url);
       });
    });

标题:Google

url:Google

标题:www.google.com

url:www.google.com

标题:雅虎

url:Yahoo

标题:www.yahoo.com

url:www.yahoo.com

2 个答案:

答案 0 :(得分:6)

您正在获取重复数据,因为您正在迭代每个输入,然后将相同的值存储在两个变量中:

var title = $(this).attr("value");
var url = $(this).attr("value"); // same thing

您的变量titleurl包含相同的内容。

您可以迭代div,然后在其中获取输入:

$('#links div').each(function() {
      var title = $(this).find('[name=linkTitle]').val();
      var url = $(this).find('[name=linkURL]').val();
      console.log('title: ' + title);
      console.log('url: ' + url);
});

小提琴:http://jsfiddle.net/zXTEC/

答案 1 :(得分:1)

它是重复的,因为您使用此行为每个文本框写入两次值$(this).attr("value");再次查看您的代码,您将看到每个框使用相同的行来获取值并分配它有两个不同的变量......