1 <script>
 2 $(function(){
 3     $('.on1').each(function(){
 4         $(this).hover(
 5             function(){
 6                 $(this).addClass('ppNavOn');
 7         });
 8         $(this).mouseleave(
 9             function(){
10                 $(this).removeClass('ppNavOn');
11         });
12         
13     });
14 });
15 </script>

 

相关文章:

  • 2021-09-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2021-11-06
  • 2021-10-06
猜你喜欢
  • 2021-12-30
  • 2021-12-30
  • 2021-09-19
  • 2021-12-30
  • 2021-12-30
  • 2021-12-30
  • 2022-12-23
相关资源
相似解决方案