• jQuery实现简单导航栏的样式切换


    style css样式部分:

    ul{
    margin: 0 auto;
    height: 50px;
    background-color: #369;
    }

    ul>li{
    text-decoration: none;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    color: #fff;
    padding: 0 15px;
    border-left: 1px solid #365;

    }
    .active,ul>li:hover{
    background-color: #fff;
    color: #369;
    cursor: pointer;
    }

    html部分:

    <ul>
    <li>首页</li><li>关于我们</li><li>产品中心</li><li>新闻中心</li><li>关于我们</li>
    </ul>

    方法一:https://www.jkys120.com/article/95498/

    $li = $('ul>li');
    // console.log($li);
    $li.bind('click',function(){
    $this=$(this);
    $this.addClass('active');
    $this.siblings().removeClass('active');
    console.log('111');
    });https://www.jkys120.com/article/95498/


    方法二:(原生Js)

    for(let i = 0 ;i < navs.length; i++){
    navs[i].onclick = function(e){
    let activedNav = this.parentNode.querySelector('.active');
    if(activedNav == this){
    return;
    }
    activedNav.className = '';
    this.className = 'active';
    }
    }

  • 相关阅读:
    2018.5.27 OraclePLSQL编程 if-else练习和循环结构练习
    桶排序
    从函数中返回引用
    函数返回值
    参数传递模式
    计数排序(不基于比较的排序算法)
    快排序
    堆用作优先队列
    堆排序
    合并算法
  • 原文地址:https://www.cnblogs.com/zqw111/p/11255348.html
Copyright © 2020-2023  润新知