jQuery('#mycarousel').jcarousel({ start: 3 });
有人可以告诉我$和jquery有什么区别?
参考:jQuery.noConflict()
为了更好地说明这个想法,这里是从参考链接获得的一个例子:
<script type="text/javascript"> $.noConflict(); jQuery(document).ready(function($) { // Code that uses jQuery's $can follow here. }); // Code that uses other library's $can follow here. </script>