Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的文件中有一个工作表格。我想复制这个表格,以便它可以添加多个程序。如果我按“添加程序”,它应该在该表单上附加一个与第一个相同的额外表单,而不会丢失 CSRF。我怎样才能做到这一点?
此致
我只是使用以下方法克隆了表单:
var clonedElement = $(this).parent().clone();
并附加到我需要使用的地方:
$(this).parent().parent().children().append(clonedElement);
您不是在尝试创建嵌套表单吗?请记住,克隆将保留输入 ID,请确保您需要。
检查此答案以获取示例https://stackoverflow.com/a/16729580/1006863