0

我有一个在全屏图库页面上滑出的联系表格。jquery 代码有冲突并弄乱了图库。有任何想法吗?我尝试删除第二个 jquery 库,甚至在每个脚本中添加 noconflict 函数。

<body>
<div id="gallery_nav" style="height:30px;padding-top:5px;">
 <div class="logo"><a href="/">df</a></div>
<a href="/">Home</a>
<a href="/about">About Me</a>
<a href="/specials">Specials</a>
</div>

<div id="contactable"></div>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2    /jquery.js">   </script>
<script type="text/javascript" src="/contactme/jquery.contactable.min.js"></script>
<link rel="stylesheet" href="/contactme/contactable.css" type="text/css" />
<script>
contact form scripts goes here
</script>

<div for full screen images goes here>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js"> </script>
<script type="text/javascript" src="jquery.easing.1.3.js"></script>
<script>
script for image gallery goes here
</script>
4

1 回答 1

0

尝试切换:首先是画廊(1.3),然后是脚本(1.7.2)。

尝试用 jQuery.noConflict(); 替换 jQuery 中的 $;

于 2012-07-05T07:12:29.613 回答