supose我喜欢这样:
<tr id="file" >
<td width="510"><div align="right"><span class="star"> *</span>
<input type="text" name="title" style="width:500px;direction:ltr" />
</div></td>
<td width="156" nowrap="nowrap"><div align="right">file </div></td>
</tr>
我必须在页面底部链接,让我做一些动作,我的js代码是:
$(function(){
$(".add").click(function(e){
e.preventDefault();
var copy =$('#file').clone().removeAttr('id').insertBefore($('.submit')) ;
console.log('add called') ;
});
$('.remove').click(function(e){
e.preventDefault();
console.log('remove called ');
});
}) ;
如果用户首先在第一个输入中输入一些文本我在副本中有相同的文本,我想在创建副本后清除输入。罐