lavalamp jquery 未链接通过

发布于 2024-08-02 06:54:36 字数 331 浏览 7 评论 0原文

我正在努力让我的熔岩灯在我正在重新设计的网站上工作。 jquery 和链接取自以前的站点,但当您单击它们时它们不起作用。

请注意,所有页面尚未完成,关于我们的页面已在网站上查看

www .alwaystwisted.com/sandbox/stagecraft/index.html

有什么想法吗?

我确信这很简单,但对我来说仍然太复杂。

预先感

谢斯图

I'm struggling getting my lavalamp to work on a site i'm redesigning. the jquery and links were taken from the previous site but they're not working when you click on them.

note all pages aren't finished yet, about us page is live on the site to check

www.alwaystwisted.com/sandbox/stagecraft/index.html

any ideas?

I'm sure it's something simple, but still too complext for me.

thanks in advance

Stu

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

土豪我们做朋友吧 2024-08-09 06:54:36

单击链接后,您返回 false!

 $("#1, #2, #3").lavaLamp({
                fx: "backout", 
                speed: 600,
                click: function(event, menuItem) {
                    //this stops the link from following
                    return false;
                }
            });

Your returning false when the link has been clicked!

 $("#1, #2, #3").lavaLamp({
                fx: "backout", 
                speed: 600,
                click: function(event, menuItem) {
                    //this stops the link from following
                    return false;
                }
            });
老街孤人 2024-08-09 06:54:36

只需将“false”替换为“true”

即可返回true;

just replace the "false" with "true"

So it will be return true;

情深缘浅 2024-08-09 06:54:36

删除该行

"return false;"

是否也可以修复它?

doesn't deleting the line

"return false;"

also fix it?

メ斷腸人バ 2024-08-09 06:54:36

使用这段代码,它解决了这个问题:

var $tlt = jQuery.noConflict();
$tlt(function() {
    $tlt('.lavamenu').lavalamp( ... );


});

Use this code, it solves the problem:

var $tlt = jQuery.noConflict();
$tlt(function() {
    $tlt('.lavamenu').lavalamp( ... );


});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文