Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 DOM 中删除突出显示的最简单方法是什么?
如果您注意到实际值,它们都是 0。我也许可以选择,但我不确定该怎么做。
我还必须删除每个标签。
我该怎么做呢?
利用
$('.k-edit-form-container').children().slice(0, 3).remove();
或者
$('.k-edit-form-container').children(':lt(3)').remove();
$('.k-edit-form-container').children().filter(':lt(3)').remove();
参考
。孩子们()
:lt()
。片()
。筛选()
。消除()