0

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

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

这是我的 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);
       });
    });

标题:谷歌

网址:谷歌

标题:www.google.com

网址:www.google.com

标题:雅虎

网址:雅虎

标题:www.yahoo.com

网址:www.yahoo.com

4

2 回答 2

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/

于 2013-10-29T19:31:39.703 回答
1

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

于 2013-10-29T19:32:23.190 回答