2015-05-14 93 views
1

我是Themeforest的作者,今天我收到了Envato的消息,告訴我必須使用最新版本的jQuery來獲得我的html模板的批准,但是當我使用最新版本時攝像頭(http://www.pixedelic.com/plugins/camera/)消失。 我能做什麼? 請我需要幫助 感謝使用2個JQuery版本

+1

'jQuery的noConflict()'。 –

+0

在jQuery Migrate中使用最新的jQuery版本;) –

回答

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