嘿伙计们我正在尝试删除一个表ID,但只删除一个特定的类。
<table id="toc" class="toc plainlinks"
我非常接近,但我不知道如何将类ID合并到我的jquery脚本中。我不想删除整个id,因为有时候我需要那个id。但我从来不需要那个特定的类(toc plainlinks)
这是我的
$('table#toc').remove();
删除表id =“toc”,但我需要以某种方式获取该类...
谢谢!
答案 0 :(得分:1)
这很容易:
$('table.toc').remove();
或甚至(如果您希望选择器更精确):
$('table.toc.plainlinks').remove();
但可能你想删除这个类本身,那么你应该这样做:
$('table.toc').removeClass('toc');
在询问之前你应该做一些研究,因为这是jQuery的基础知识。
答案 1 :(得分:1)
使用班级名称选择器:
$('table.classname').remove();
答案 2 :(得分:0)
$("#toc").removeAttr("class");
通过这种方式你只需删除课程,其他一切仍然存在。