jQuery,获取所有克隆的输入字段的所有值

问题描述 投票:0回答:2

需要一些帮助或指示才能实现以下目标。 单击时克隆输入字段并在更改时检索字段的值,以便将它们作为文本粘贴到另一个 div 中。然而,它似乎只适用于原始硬编码字段(不适用于克隆字段)。我尝试在代码中的多个位置添加每个函数,但没有成功。 我的代码现在看起来像这样:

<div class="cartWrapper">
    <div class="clonedInput">

        <label for="chipsCategory" class="">Chips Category <span class="requiredField">*</span></label>
        <select class="categoryName1 changeFields" name="chipsCategory">
            <option value="Kraks">Kraks</option>
            <option value="Curls">Curls</option>
            <option value="Crisps">Crisps</option>
        </select>

        <label for="chipsTaste" class="">Choose Taste <span class="requiredField">*</span></label>
        <select class="chipsTaste1 changeFields" name="chipsTaste">
            <option value="brand_1">Brand 1</option>
            <option value="brand_2">Brand 2</option>
            <option value="brand_3">Brand 3</option>
        </select>

        <label for="chipsQty">Quantity <span class="requiredField">*</span></label>
        <input type="number" value="1" class="changeFields chipsQty" name="chipsQty[">


    </div>

      <button class="clone">Clone</button> 

    </div>
</div>    
<div id="pasteItems"></div>

和js:

$( document ).ready(function() {

    function clone(){

        $('.clonedInput:first')
        .clone()
        .appendTo(".cartWrapper")
        .each(function(){})
        .on('click','button.clone',clone).append('<button class="remove">Remove</button>')
        .on('click','button.remove',remove);        
}

function remove(){
    $(this).parents(".clonedInput").remove();
}

$("button.clone").on("click", clone);

$("button.remove").on("click", remove);


function getValues() {

    var categoryName = $('.categoryName1').val();

    var chipsTaste = $('.chipsTaste1').val();

    var chipsQty = $('.chipsQty').val();    

    $('#pasteItems').text(categoryName + ' ' + chipsTaste + ' ' + chipsQty);

}

getValues();

$('.changeFields').change(function(){

$(this).each(function(){

    getValues();

    });

});


});

非常感谢您的帮助!

jquery html clone
2个回答
3
投票

由于它们是动态创建的,因此无法以相同的方式选择它们(参见委托)。所以你需要:

 $(".cartWrapper").on('change', '.changeFields', function() {
     //do what you need to with the value of the cloned input
  });

1
投票

如果您的输入在页面启动时实例化,并且在页面就绪事件触发后未动态加载,那么您可以使用clone()向页面添加其他输入元素。

但是,您需要告诉 jQuery 您不仅要克隆输入元素,还要克隆其数据和事件侦听器。

通过将clone()代码更改为以下内容来完成此操作:

$( document ).ready(function() {

  // clone(true,true) means -> .clone( [withDataAndEvents ] [, deepWithDataAndEvents ] )
  function clone(){

      $('.clonedInput:first')
      .clone( true, true )
      .appendTo(".cartWrapper")
      .each(function(){})
      .on('click','button.clone',clone).append('<button class="remove">Remove</button>')
      .on('click','button.remove',remove);        
  }
});

您可以在这里阅读更多相关信息。 http://api.jquery.com/clone/

定义同名函数时要小心,即使它位于不同的作用域中。这可能会让您以后感到困惑。最好将其称为clone_now()、clone_once()或clone_at_startup(),或者您喜欢的函数名称。

希望这有帮助!

© www.soinside.com 2019 - 2024. All rights reserved.