menu.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. $(function() {
  2. $('.dropdown-menu>li').removeClass('active');
  3. var flag;
  4. $('.nav>li>a').hover(function() {
  5. if ($(this).parent('li').hasClass('selected')) {
  6. flag = true;
  7. $(this).parent('li').removeClass('selected');
  8. } else {
  9. flag = false;
  10. }
  11. $(this).css({
  12. 'background': '#1457AF',
  13. "color": '#fff'
  14. })
  15. }, function() {
  16. if (flag == true) {
  17. $(this).parent('li').addClass('selected');
  18. $(this).css({
  19. 'color': '#4678C6',
  20. "background": '#fff'
  21. });
  22. } else {
  23. $(this).css({
  24. 'background': '#ffff',
  25. "color": '#333'
  26. })
  27. }
  28. })
  29. $('.dropdown-menu').hover(function() {
  30. if ($(this).parent('li').hasClass('selected')) {
  31. flag = true;
  32. $(this).parent('li').removeClass('selected');
  33. } else {
  34. flag = false;
  35. }
  36. $(this).siblings('a').css({
  37. 'background': '#1457AF',
  38. "color": '#fff'
  39. })
  40. // if ($(this).parent('li').hasClass('selected')) {
  41. // }
  42. // $(this).siblings('a').css({
  43. // 'background': '#1457AF',
  44. // "color": '#fff'
  45. // })
  46. }, function() {
  47. if (flag == true) {
  48. $(this).parent('li').addClass('selected');
  49. $(this).siblings('a').css({
  50. 'background': '#fff',
  51. "color": '#4678C6'
  52. })
  53. } else {
  54. $(this).siblings('a').css({
  55. 'background': '#fff',
  56. "color": '#333'
  57. })
  58. }
  59. });
  60. });