0

我在这个页面上遇到了两个 jQuery 脚本之间的冲突:http: //encoreazalea.com/ee/the-collection/in-the-landscape

我正在为下拉菜单使用一个脚本,为图片库使用另一个脚本。

在网站的主页上没有错误。但是,在此页面上,我收到以下控制台错误:

TypeError: $("#main-nav").dropmenu is not a function
zindex: 100

我的代码如下:

<script type="text/javascript">
jQuery(document).ready(function() {
    $("a:has(img.gallery)").click(function() {
        var largePath = $(this).attr("href");
        var caption = $(this).attr("title");
        jQuery(".photo_large").attr({ src: largePath});
        jQuery("#caption1").text(caption);
        return false;
    });
});

</script>

我会很感激一些帮助解决这个问题。

谢谢。

4

1 回答 1

1

http://encoreazalea.com/ee/the-collection/js/jquery.dropmenu.js未正确加载

于 2012-10-04T15:00:30.870 回答