gpt4 book ai didi

jquery - Twitter bootstrap 日期选择器克隆

转载 作者:行者123 更新时间:2023-12-01 00:48:43 25 4
gpt4 key购买 nike

我使用漂亮的简单日期选择器来进行 twitter bootstrap http://www.eyecon.ro/bootstrap-datepicker/

<div class="input-append datepick">
<input size="16" type="text">
<span class="add-on"><i class="icon-th"></i></span>
</div>

我尝试使用日期选择器克隆 div:

    $('#addButton').click(function() {

var newStr = $("#makeList").find(".additem-block").last().clone(true).appendTo("#makeList");

newStr.find(".datepick").each(function() {
$(this).attr("id", "").removeData('datepicker').unbind();
$(this).val('');
$(this).datepicker();
});
});

当我单击日期选择器按钮时,它会在两个位置打开日期选择器 div:原始按钮上方和克隆按钮上方。

如何正确克隆它?

最佳答案

3个小时的实验得出结果:

newStr.find(".datepick").each(function() {
$(this).attr("id", "").removeData().off();
$(this).find('.add-on').removeData().off();
$(this).find('input').removeData().off();
$(this).datepicker();
});

不漂亮,但是有用。

关于jquery - Twitter bootstrap 日期选择器克隆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12000146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com