0

我的网站有这些脚本,但一次只能使用一个功能,无论哪个代码接近 head 标签都可以正常工作。什么是同时工作而没有任何冲突的解决方案。

代码如下:

<script type="text/javascript" src="demo_files/jquery.js"></script>
    <script type="text/javascript" src="demo_files/jquery.vticker-min.js"></script>
    <script type="text/javascript"> 
    $(function(){
        $('#news-container').vTicker({ 
            speed: 500,
            pause: 3000,
            animation: 'fade',
            mousePause: false,
            showItems: 3
        });
            $('#news-container1').vTicker({
            speed: 700,
            pause: 4000,
            animation: 'fade',
            mousePause: false,
            showItems: 1
        });
    });
    </script> 
    <style type="text/css">
    body{ font-family:Verdana, Arial, serif; font-size:14px;}
    </style>
    <link media="screen" rel="stylesheet" href="colorbox.css" />
    <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
    <script src="jquery.colorbox-min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(function()
    {
        $(window).bind('load', 
            function(e) 
            {
                $.colorbox({opacity:0.3, href:"offer.html"}); 
            });
    });
    </script>
4

1 回答 1

2

长答案:这是因为您包含 jQuery 两次,一次在顶部,另一次在一半左右(缩小版本)。

第二次包含库时,$ 对象将被重新定义,覆盖现有实例。发生这种情况时附加到 $ 对象的任何代码(例如事件和插件)都将丢失。

简短回答:删除 jQuery 的第二个副本,它应该可以工作。

于 2012-04-24T09:52:36.683 回答