好的,我有输入对象,当它被改变时它会添加另一个..当你点击时
还有删除(izdzēst
)链接,它应该删除最后一个输入字段.. 那怎么办?(删除的功能是dzest
)
我想问题出在$(this)
?
<input name="userfile[]" type="file" size=40 />
<a href="#" onclick="dzest();return false" class="link" name="dzest" style="font-weight:normal; display:none;">Izdzēst</a><br />
<script>
function dzest(){
$(this).closest('input').remove();
}
$("input[type=file]").change(function() {
$('<input name="userfile[]" type="file" />').appendTo('body');
$('<a href="#" onclick="dzest();return false" class="link" name="dzest" style="font-weight:normal; display:inline;">Izdzēst</a><br/>').appendTo('body');
$('.link').css('display','inline');
});
</script>