jquery动态删除table里的行
现在是这样写的,能实现效果,有没有其它简单点的方法?$(".ruleTab").on("click",".icon_delete",function(){vartable...
现在是这样写的,能实现效果,有没有其它简单点的方法?
$(".ruleTab").on("click", ".icon_delete", function () {
var table = this.parentNode.parentNode.parentNode.parentNode;
table.removeChild(this.parentNode.parentNode.parentNode);
}) 展开
$(".ruleTab").on("click", ".icon_delete", function () {
var table = this.parentNode.parentNode.parentNode.parentNode;
table.removeChild(this.parentNode.parentNode.parentNode);
}) 展开
2个回答
展开全部
$(this).parents("#id").remove();
$(this).parents(".class").remove();
$(this).child("#id").remove();
$(this).child(".class").remove();
这样或许快一些
$(this).parents(".class").remove();
$(this).child("#id").remove();
$(this).child(".class").remove();
这样或许快一些
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询