特别是这个符号‘$’,我学一段时间了,还没看见这样写的,希望这方面有研究的高手指导一下?
<script type="text/javascript">
   $(document).ready(function(){
    $("#box").jCarouselLite({
        btnPrev: "#prev",
btnNext: "#next",
    auto: 4000,//图片停留时间
    scroll: 1,//每次滚动覆盖的图片个数
    speed: 1000, //设置速度,0是不动。其次就是数字越大 ,移动越慢。
    vertical: false,//横向(true),竖向(false)
    visible: 4, //显示的数量
    circular: true //是否循环
    });
$("#boxImg ul li:not(:first)").hide();
$("#box ul li").each(function(i){
$(this).click(function(){
$("#boxImg ul li").hide();
$($("#boxImg ul li")[i%($("#box ul li").length/3)]).fadeIn("slow");
})
})
});
</script>