Helli,我開發了一種形式,我通過單擊添加新按鈕來製作一個div的克隆。這個div有一個輸入框和表格。當我點擊AddNew按鈕時,一個新的div將創建哪個是第一個div的克隆,但是我的issuse是相同的,不能在這些divs的輸入框中輸入。我無法實現此驗證。相同的名稱不能在不同的輸入類型
$("#insert17").click(function(){
$(".copyFromHere:first").clone().appendTo(".individualMarksSection")
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<div class="portlet light portlet-fit box individual individualDepartmentSection">
<input type="button" class="btn green individual" value="Add New+" id="insert17"></input>
\t
<div class="copyFromHere portlet-body individual individualDepartmentSectionSub">
\t \t \t \t \t \t \t \t <label class="label1 col-md-12 individual labelDepartmentName"> Enter Department Name </label>
\t \t \t \t \t \t \t \t <input type="text" class="form-control individual DepartmentName"></input>
<table id="tableboth" class="arrSubjects table table-striped table-hover individual">
<thead>
<th>Employee</th>
<th>Salary</th>
</thead>
<tbody>
<tr>
<td>
<input type="text" class="form-control EmpName" disabled="true" name="EmpName">
</td>
<td>
<input type="text" class="form-control salary allownumericwithoutdecimal" maxlength="3" name="salary">
</td>
</tr>
</tbody>
</table>
</div>
\t
</div>
This answere does not helpful。我得到相同的部門名稱 –
@ArpitGupta我以爲你只想包括Salary和EmployeeName,現在我更新了代碼以包含所有三個輸入,包括DepartmentName。 – NikhilGoud
先生,我的問題是輸入框輸入部門名稱不能相同。當我點擊addnew按鈕,然後克隆輸入框和表將會出現,但兩個或兩個以上的輸入框的(輸入部門名稱)值不能相同 –