美文网首页前端
jq 实现公用头部导航点击跳转之后给对应添加的样式

jq 实现公用头部导航点击跳转之后给对应添加的样式

作者: 花花0825 | 来源:发表于2018-10-16 09:51 被阅读2次

    html:

    html

    jq:

    $(document).ready(function () {

        $(".index-menu a").each(function () {

            $this = $(this);

            if ($this[0].href == String(window.location)) {

                $this.addClass("main-active");

            }

        });

    });

    效果:

    相关文章

      网友评论

        本文标题:jq 实现公用头部导航点击跳转之后给对应添加的样式

        本文链接:https://www.haomeiwen.com/subject/bopczftx.html