我想刪除項目時,它被添加,但當我點擊標籤跨度,它不工作。添加,刪除記錄由jquery
<script type='text/javascript'>
$(document).ready(function() {
$('img#add_file').click(function() {
$('#file_tools').before('<div class="file_upload" id="f"><input name="file[]" type="file"> <span>del</span></div>');
});
$('span').click(function() {
$(this).parent().hide();
});
});
</script>
使用'。對()'結合事件。 –