You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
259 B

8 years ago
  1. $(function(){
  2. //头部菜单
  3. $('.classreturn .nav_menu a:last').click(function(e){
  4. $('.tpnavf').toggle();
  5. e.stopPropagation();
  6. });
  7. //左侧导航
  8. $('.classlist ul li').click(function(){
  9. $(this).addClass('red').siblings().removeClass('red');
  10. });
  11. })