0

在这个网站上,我有 2 种 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>
4

1 回答 1

1

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

于 2013-08-27T16:26:47.270 回答