12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- $(function() {
- $('.dropdown-menu>li').removeClass('active');
- var flag;
- $('.nav>li>a').hover(function() {
- if ($(this).parent('li').hasClass('selected')) {
- flag = true;
- $(this).parent('li').removeClass('selected');
- } else {
- flag = false;
- }
- $(this).css({
- 'background': '#1457AF',
- "color": '#fff'
- })
- }, function() {
- if (flag == true) {
- $(this).parent('li').addClass('selected');
- $(this).css({
- 'color': '#4678C6',
- "background": '#fff'
- });
- } else {
- $(this).css({
- 'background': '#ffff',
- "color": '#333'
- })
- }
- })
- $('.dropdown-menu').hover(function() {
- if ($(this).parent('li').hasClass('selected')) {
- flag = true;
- $(this).parent('li').removeClass('selected');
- } else {
- flag = false;
- }
- $(this).siblings('a').css({
- 'background': '#1457AF',
- "color": '#fff'
- })
- // if ($(this).parent('li').hasClass('selected')) {
- // }
- // $(this).siblings('a').css({
- // 'background': '#1457AF',
- // "color": '#fff'
- // })
- }, function() {
- if (flag == true) {
- $(this).parent('li').addClass('selected');
- $(this).siblings('a').css({
- 'background': '#fff',
- "color": '#4678C6'
- })
- } else {
- $(this).siblings('a').css({
- 'background': '#fff',
- "color": '#333'
- })
- }
- });
- });
|