解决途径:
在页面中添加
<script type="text/javascript" src="jquery/1.7.2/jquery.touchSwipe.min.js"></script>
对应js代码如下:
<pre class="html" name="code"> $(function() {
$('#myCarousel').swipe({
swipeLeft: function() { $(this).carousel('next'); },
swipeRight: function() { $(this).carousel('prev'); },
});
})