我必须在克隆功能上使用日期选择器,所有克隆的日历都会打开,但日期仅在第一次更改
我的jQuery是:
var newclass= 0;
jQuery("#addpublication").click(function () {
$(".another_pub:last").clone().find("input:text").val("").end().appendTo(".pub_clone");
$(".publication_date").each(function(){
$(this).removeClass().addClass("form-control publication_date newclass"+newclass);
$(".newclass"+newclass).datepicker({
dateFormat: "yy-mm-dd",
changeMonth: true,
changeYear: true,
});
newclass++;
});
});