我有以下法典:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#add, .check ").click(function() {
$( #mytable tbody>tr:last ).clone(true).insertAfter( #mytable tbody>tr:last );
return false;
});
});
</script>
With the following in by body:
<form action= demo.php method= post >
<a id="add">+</a></td>
<table id="mytable" width="300" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td>Name</td>
</tr>
<tr class="person">
<td><input type="text" name="name[]" class= check /></td>
</tr>
</tbody>
</table>
<input type= submit />
</form>
我如何能够在加起来后清除田地,并可能增加诸如ade落或滑坡等影响。 此外,如果最后一行的任何形式要素都集中起来,它将自动增加新行,但无法说明如何进入最后一行的构成要素......