1.CSS伪类选择器:

section > ul em :not(:first-child) {
display:none;
}

2.Jquery选择器

$('#news_move em:gt(0)').css('display','none');


3.Jquery选择器
$('#news_move em[name!="news_move"]').css('display','none');

相关文章: