我使用以下代码,为了复制表单的输入并生成新的 id 名称,它工作正常,但我需要在带有 clonedSection1 ID 的 div 之后添加两个带有类的 div,然后它不再工作了,是吗?需要更改脚本中的某些内容吗?或者那些 div 只会阻止正常运行而我需要删除它们?
这是我的代码
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-1.4.2.js" type="text/javascript"></script>
</head>
<body>
<form id="myForm">
<div id="clonedSection1" class="clonedSection">
<!-- here goes <div class="container contain2 marco">
<div class="row row-centered ">-->
<p>Name: <input type="text" name="name" id="name" /></p>
<p>Product Description:</p>
<p><textarea rows="10" cols="50" name="desc" id="desc"></textarea></p>
<p>Brand Name: <input type="text" name="brand" id="brand" /></p>
<p>Product Code Number: <input type="text" name="code" id="code" /></p>
<p>West Texas Co-op Bid Product Number (if different from the Product Code Number): <input type="text" name="coop" id="coop" /></p>
<p>Commodity processing availability: <input type="checkbox" name="yes" id="yes" value="Yes"> Yes <input type="checkbox" name="no" id="no" value="No"> No</p>
<p>Commodity processing code number (if applicable): <input type="text" name="comm" id="comm" /></p>
<!--
</div>
</div> -->
</div>
<div>
<input type="button" id="btnAdd" value="add another name" />
<input type="button" id="btnDel" value="remove name" />
</div>
</form>
<script type="text/javascript">
我发现脚本正在我需要生成的第二个 div 中创建新的 id
<div class="row row-centered " id="name2" name="name2">
所以我认为我肯定需要更改脚本中的某些内容,应该是什么?
相关分类