动态div中的jQuery datepicker

时间:2012-04-13 16:02:05

标签: jquery html datepicker

我有一个包含字段集的表单,并且能够添加新部分(前一个字段集的克隆)。我可以选择原始字段的日期,但是当我添加新的部分时,datepicker函数不会生成。

此处列出了我的代码和示例 - > http://jsbin.com/aqijuh/15

感谢。

1 个答案:

答案 0 :(得分:1)

那是因为你必须在新添加的元素上调用datepicker()函数

 document.getElementById("placeholder").appendChild(newFieldSet);
 $('input.date', newFieldSet).datepicker();
  window.lastClone = newFieldSet.id;

http://jsbin.com/aqijuh/17/edit