<script> <BR>$(function(){ <BR>$("#getAtr").click(function(){ <BR>$str=''; <BR>$str+="<tr align='center'>"; <BR>$str+="<td><input type='text' name='advTitle[]'/>"; <BR>$str+="<td><input type='file' name='img[]' />"; <BR>$str+="<td><input type='text' name='advContent[]' />"; <BR>$str+="<td><input type='text' name='advSource[]' />"; <BR>$str+="<td><input type='text' name='advAuthor[]' />"; <BR>$str+="<td><input type='text' name='advPosition[]' />"; <BR>$str+="<td onClick='getDel(this)'><a href='#'>删除追加"; <BR>$str+=""; <BR>$("#addTr").append($str); <BR>}); <BR>}); <br><br>function getDel(k){ <BR>$(k).parent().remove(); <BR>} <BR></script>
--------------------------------------------------------------------------------
html部分