2014-02-24 54 views
1

我搞亂TouchSwipe jQuery插件。通過向左滑動(上一篇文章)和右側(下一篇文章),我成功添加了一種導航。如果我單獨嘗試使用我的代碼片段,它會起作用,當我把它放在我的博客頁面上時,與其他jQuery代碼一起,無法工作......我沒有特定的錯誤。我的第一個嘗試之一是把jQuery.noConflict,但它不起作用。我不明白我卡在哪裏 有什麼幫助嗎? 這是我的代碼做了TouchSwipe jQuery插件導航

<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

兄弟你能告訴我如何在我的網頁上安裝這個插件。我沒有找到任何與它有關的文檔 – Vikram

回答

1

從你的鏈接,我看到這一點:

TypeError: jQuery is undefined 
var jQNC = jQuery.noConflict(); 

這意味着jQuery是沒有定義就像不存在的,所以你必須讓你JQNC變量一樣這個:

var jQNC = $.noConflict(); 

$ for jquery exists。

+0

我認爲沒有與jQuery這部分相關的錯誤...你可以在這裏驗證:http://lucascalvi.it/2014/02/synology-ds214-play-nas-recensione-e -benchmark-wd-western-digital-RED-4TB-ds214play –

+0

214行有錯誤:var jQNC = jQuery.noConflict(); 用var jQNC = $ .noConflict();我認爲將工作 –

+0

你提到的代碼是有關的Twitter插件...我臨時刪除它,但仍然不工作 –