0

例如:

<ul>
    <li id="l1"></li>
    <li id="l2"></li>
    <li id="l3"></li>
    <li id="l4"></li>
    <li id="l5"></li>
</ul>

如何删除一行?

4

3 回答 3

4
$('#l1').remove();  // To remove specific element that has id

$('li').remove();   // To remove all li's

$('.l1').remove();  // To remove elements with class l1
于 2012-11-29T22:18:31.573 回答
2

您可以删除:

/**
id is a variable that you can get from anywhere wish you
**/

$("#l"+id).remove();

其他选项更具体

$("#l1").remove();
于 2012-11-29T22:21:38.067 回答
1

使用remove()jQuery 函数。

尝试使用:$('#l1').remove();删除单个li元素。

于 2012-11-29T22:18:28.663 回答