在此站点上,我有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>

最佳答案

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

关于javascript - jQuery的两种用法相互冲突,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18470793/

10-10 22:33