我正在搞乱TouchSwipe jQuery插件。我通过向左滑动(上一篇文章)和向右(下一篇文章)成功添加了一种导航。如果我单独尝试我的代码片段它可以工作,当我把它放在我的博客页面上,与其他jQuery代码,没有办法工作...我没有特定的错误。我的第一次尝试之一是放jQuery.noConflict但是...它不起作用。我无法理解我被困在哪里 有帮助吗? 这是我做的代码
<script>
$(function() {
//Enable swiping...
$("#test").swipe({
//Generic swipe handler for all directions
swipeLeft: function(event, direction, distance, duration, fingerCount) {
window.location.href = "http://stackoverflow.com";
},
swipeRight: function(event, direction, distance, duration, fingerCount) {
window.location.href = "http://google.com";
},
threshold: 0
});
});
</script>
答案 0 :(得分:1)
从链接中我看到了:
TypeError: jQuery is undefined
var jQNC = jQuery.noConflict();
这意味着jQuery没有被定义就好像不存在,所以你必须让你像这样的JQNC变量:
var jQNC = $.noConflict();
$ for jquery存在。