为什么我会收到错误TypeError:$(“#main-nav”)。dropmenu不是函数

时间:2012-10-04 14:55:25

标签: jquery

我在此页面上遇到两个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>

我很感激帮助整理出来。

感谢。

1 个答案:

答案 0 :(得分:1)