我正在尝试删除一些h行的li行。
这是html:
这是我正在尝试使用的jquery:
$("li").remove(":contains('undefined')");
感谢您的帮助!
答案 0 :(得分:2)
您可以尝试:
$("li:contains('undefined')").remove();
答案 1 :(得分:1)
我这样做:
$('li').filter(function() {
return $(this).find('span').text().indexOf('undefined') != -1;
}).remove();
答案 2 :(得分:0)
尝试:
$("li span:contains('undefined')").remove();
它在我脑海中起作用:)
编辑这将删除LI:
$("li span:contains('undefined')").parent().parent().remove();