私は異なる js バージョンを使用する liteAccordion プラグインと amazon scoller を使用しています。
ここに私のコードがあります
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>var jQuery132 = $.noConflict(true);</script>
そして今、私はjsの他のバージョンを含めています。これはliteaccorindnプラグインのコードです
<script type="text/javascript">
(function($){
$('#one').liteAccordion({
onTriggerSlide : function() {
this.find('figcaption').fadeOut();
},
onSlideAnimComplete : function() {
this.find('figcaption').fadeIn();
},
autoPlay : true,
pauseOnHover : true,
theme : 'stitch',
rounded : true,
enumerateSlides : true
}).find('figcaption:first').show();
})(jQuery132);
</script>
両者は対立している
ここに私のリンクがあります ここをクリック
この競合の問題を解決する方法を誰か教えてもらえますか
ありがとう