jQuery插件有问题

时间:2011-06-30 20:07:44

标签: jquery-plugins

我正在使用以下脚本在网址上用a.active标记当前页面。

$(function () {
        var menus = $('#menu >li > a');
        menus.removeClass('active');

        var matches = menus.filter(function () {
            return document.location.href.indexOf(this.href) >= 0; 
        });

        matches.addClass('active');
    });

我有以下网站:website

我们可以在所有菜单项上运行'按摩治疗' - 为什么??

任何帮助非常感谢。皮特

1 个答案:

答案 0 :(得分:2)

我猜“按摩治疗”页面上缺少<script type="text/javascript" src="js/index.js"></script>