我試着按照引用各種網站的代碼,但堅持添加/刪除動態行。從給定的內容中動態添加和刪除jQuery的行
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
</head>
<form>
Name: <input type="text" id="name" value=""></input></br>
Gender : <input type="radio" name="sex" value="male">M  
<input type="radio" name="sex" value="female">F</br>
Resident: <input type="checkbox" name="resident" value="Yes">Yes  
<input type="checkbox" name="resident" value="No">No
</br>
Edu : <select name="selectbox" id="selectbox">
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
</br>
<input type="submit" id="button" value="Submit">
</form>
<table width="400" border="1" id="empinfo" cellpadding="2" cellspacing="2">
<tr>
<th>Name</th>
<th>Gender</th>
<th>Resident</th>
<th>Edu</th>
<th>Action</th>
</tr>
</table>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$("#button").click(function(){
var name = $('#name').val();
var gender = $('input:radio[name=sex]:checked').val();
var resident= $('input:checkbox:checked').val();
});
});
</script>
</html>
我創建了一個HTML表單和發佈數據,我必須表明提交
信息表同一頁上,並在操作列需要顯示編輯和刪除按鈕。如果我按編輯,然後信息需要在同一頁面上打開,當我提交它會影響表格。如果我按刪除按鈕,那麼行需要刪除。所有這些操作只能通過使用Javascript和Jquery。
請幫我解決這個問題。
謝謝。你的代碼適用於添加行,但是如何編輯和刪除行?如果您有任何想法,請告訴我。 –