我在此页面上遇到两个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>
我很感激帮助整理出来。
感谢。