使用2个JQuery版本

时间:2015-05-14 09:32:58

标签: jquery conflict versions

我是Themeforest的作者,今天我收到Envato的消息,告诉我必须使用最新版本的jQuery才能获得我的html模板批准,但是当我使用最新版本时相机滑块({ {3}})消失了。 我能做什么 ? 我需要帮助 感谢

1 个答案:

答案 0 :(得分:0)

您可以使用$.noConflict( true )

 <script src="other_lib.js"></script>
<script src="jquery.js"></script>
<script>
$.noConflict();
jQuery( document ).ready(function( $ ) {
  // Code that uses jQuery's $ can follow here.
});
// Code that uses other library's $ can follow here.
</script>

有关jquery noConflict();的详细信息,请参阅THIS