我正在尝试克隆一个表单并将表单名称从(例如)#form 和当克隆到 #form1 并在输入上执行相同的操作时,我真的被困在如何做到这一点上!任何帮助都将不胜感激,因为我花了一整天的时间试图弄清楚。这是我的代码:
HTML:
<div class="avail">
<form action="submit.php" id="form1" method="post">
<input type="text" name="input1" />
<input type="text" name="anotherinput1" />
<input type="text" name="onemoreinput1" />
<input type="submit" name="submit1" value="submit" />
</form>
</div>
<input type="submit" value="+" id="copy" />
JQUERY(用于克隆 div 和表单):
$("#copy").click(function(e) {
$(".avail").clone().removeAttr('id').insertBefore(this);
e.preventDefault();
});
请如果有人知道如何做到这一点,我将非常感激!