「jQuery」notとfilterでリストの子要素を削除するコード
1.not
$(“ul>li").not(“:eq(0)").remove();
$(“ul>li").not(“:first").remove();
2.filter
$(“ul>li").filter(function(index){
return index!=0;
}).remove();
Coding Changes the World
1.not
$(“ul>li").not(“:eq(0)").remove();
$(“ul>li").not(“:first").remove();
2.filter
$(“ul>li").filter(function(index){
return index!=0;
}).remove();