jquery的两种用法相互冲突

时间:2013-08-27 16:21:22

标签: javascript jquery html css

在这个网站上,我有两个使用jquery,一个用于“任何滑块”,另一个用于隐藏显示的切换。

http://www.worklightrpo.com/

如果我删除切换到jquery的链接,滑块可以工作,但切换不会...这是切换的jquery的链接。

<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>

有谁知道我怎么能让他们同时工作和玩得很好?

由于

代码的完整部分是:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script>    
        $(document).ready(function() {
            $('.nav-toggle').click(function(){
                //get collapse content selector
                var collapse_content_selector =     $(this).attr('href');                   

                //make the collapse content to be shown or hide
                var toggle_switch = $(this);
                $(collapse_content_selector).toggle(function(){
                    if($(this).css('display')=='none'){
                        toggle_switch.html('Learn More');//change the button label to be 'Show'
                    }else{
                        toggle_switch.html('Condense');//change the button label to be 'Hide'
                    }
                });
            });

        }); 
    </script>

1 个答案:

答案 0 :(得分:1)

不要加载两个不同的javascript库版本,只需要一个。