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');

相关文章:

  • 2022-12-23
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2021-12-09
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案