如何使用多个版本的jQuery?

问题描述 投票:1回答:1

Stack Overflow还有其他答案,但我不能让它们中的任何一个工作。

我需要使用2个版本的jQuery。这是我的代码:

我链接到第一个版本然后有这个代码:

 <script>
 var $i = jQuery.noConflict();
 </script>

然后我链接到第二个版本并有这个代码:

 <script>
 var $j = jQuery.noConflict();
 </script> 

这是我需要使用第二个版本$ j运行的代码

<script type="text/javascript">

    $j.ready(function() {


        $j('#slider').layerSlider({
            sliderVersion: '6.2.1',
            type: 'fullsize',
            responsiveUnder: 0,
            fullSizeMode: 'hero',
            maxRatio: 1,
            parallaxScrollReverse: true,
            hideUnder: 0,
            hideOver: 100000,
            skin: 'outline',
            showBarTimer: true,
            showCircleTimer: false,
            thumbnailNavigation: 'disabled',
            allowRestartOnResize: true,
            skinsPath: 'skins/',
            height: 800
        });
    });

</script>

我在Chrome中检查了该页面并没有显示任何错误,但它根本不会运行滑块。

javascript jquery html
1个回答
1
投票

这是一次加载(和使用)2个版本的jQuery的一种方法。根本没有必要打电话给.noConflict

console.log(jQuery3.fn.jquery);
console.log(jQuery2.fn.jquery);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>var jQuery3 = jQuery;</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script>var jQuery2 = jQuery;</script>

然后使用jQuery2运行滑块脚本:

$jQuery2.ready(function() {
    $jQuery2('#slider').layerSlider({
        sliderVersion: '6.2.1',
        type: 'fullsize',
        responsiveUnder: 0,
        fullSizeMode: 'hero',
        maxRatio: 1,
        parallaxScrollReverse: true,
        hideUnder: 0,
        hideOver: 100000,
        skin: 'outline',
        showBarTimer: true,
        showCircleTimer: false,
        thumbnailNavigation: 'disabled',
        allowRestartOnResize: true,
        skinsPath: 'skins/',
        height: 800
    });
});
© www.soinside.com 2019 - 2024. All rights reserved.