gpt4 book ai didi

javascript - TouchSwipe jQuery 插件导航

转载 作者:行者123 更新时间:2023-11-28 01:32:11 25 4
gpt4 key购买 nike

我正在摆弄 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>

最佳答案

从你的链接我看到了这个:

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

这意味着 jQuery 未定义就像不存在一样,因此您必须像这样创建 JQNC 变量:

var jQNC = $.noConflict();

jquery 的 $ 存在。

关于javascript - TouchSwipe jQuery 插件导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21991085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com