Jquery克隆不使用datepicker

时间:2014-04-29 16:33:11

标签: jquery

我找到了一个完美的行克隆命令。但是我知道问题是什么,我只是不确定如何解决它。

$(document).ready(function() {
            var id = 0;

            // Add button functionality
            $("table.dynatable button.add").click(function() {
                id++;
                var master = $(this).parents("table.dynatable");

                // Get a new row based on the prototype row
                var prot = master.find(".prototype").clone();
                prot.attr("class", "")
                prot.find(".id").attr("value", id);

                master.find("tbody").append(prot);
            });

                // Remove button functionality
                $(document).on("click", "table.dynatable button.remove", function() {
                  $(this).parents("tr").remove();
                });
        });

当我将[]添加到名称时,它将无效。但是,如果我删除[],则克隆部分会中断。

<td><input type="text" name="DATE[]" value="" class="date-pick"/></td>

我希望用户有一个日历来选择日期而不是输入日期。如果这不是一个有效的方法,有人可以提供替代方案。

0 个答案:

没有答案