gpt4 book ai didi

javascript - 删除添加的 html 表格行

转载 作者:行者123 更新时间:2023-11-28 20:36:20 27 4
gpt4 key购买 nike

我正在使用下面的代码,通过单击按钮添加表行,现在我需要另一个按钮来删除新创建的行。请帮助我做到这一点。谢谢

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"> </script>

<script>
jQuery(function(){
var counter = 1;
jQuery('input.add_row').click(function(event){
event.preventDefault();
counter++;
var newRow = jQuery('<tr><td><select name="level' + counter + '"><option value="Matric or equivalent">Matric or equivalent</option><option value="10+2 or equivalent">10+2 or equivalent</option><option value="Diploma after matric">Diploma after matric</option><option value="Bachelor Degree">Bachelor Degree</option><option value="Master Degree">Master Degree</option><option value="Others">Others</option></select></td><td><input type="text" name="prog' +
counter + '"/></td><td><input type="text" name="ins' +
counter + '"/></td><td><input type="text" name="univ' +
counter + '"/></td><td><input type="text" name="reg' +
counter + '"/></td><td><input type="text" name="yr' +
counter + '" size="4" maxlength="4"/></td><td><input type="text" name="mar' +
counter + '"/></td><td><input type="text" name="sub' +
counter + '" size="8"/></td></tr>');
jQuery('table.aca_inf').append(newRow);
});
});
</script>

最佳答案

尝试:

jQuery('input.del_row').click(function(event){
event.preventDefault();
jQuery('table.aca_inf tr:last').remove();

});

关于javascript - 删除添加的 html 表格行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15290296/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com