clear text field value in clone object

后端 未结 3 841
既然无缘
既然无缘 2020-12-08 19:46

I am having trouble to clear text field value created from jQuery clone function. I am just copying add_new_content content and appending that one with last

相关标签:
3条回答
  • 2020-12-08 20:23

    You can match the cloned <input> element with find() and reset its value with val():

    $('.add_new_content:last').clone()
                              .find("input:text").val("").end()
                              .appendTo('.add_new_content:last');
    
    0 讨论(0)
  • 2020-12-08 20:46

    remove the value after you clone it eg.

    var $clone = $('.add_new_content:last').clone();
    $clone.find('input').val('');
    $clone.appendTo('.add_new_content:last');
    
    0 讨论(0)
  • 2020-12-08 20:49

    set the value right before, or after, you clone it.

    $(document).ready(function(){
    
     $(".add_new_box").live('click',function(){
    
     var clone = $('.add_new_content:last').clone();
     clone.find("input").val("");
     clone.appendTo('.add_new_content:last');
    
    });
    
    });
    
    0 讨论(0)
提交回复
热议问题