jQuery 翻转! div 内的链接

发布于 2024-08-28 17:01:24 字数 365 浏览 11 评论 0原文

嘿。我想使用 Flip (http://lab.smashup.it/flip/)我的项目。但我希望链接能够在要翻转的 div 内进行翻转操作。我这里偶然发现了一个问题,并且回复非常有帮助,通过使用这些代码,我成功地实现了我想要的目标。但现在的问题是,当页面首次加载时,它会在单击任何链接之前自动翻转。我对 jQuery 了解不多。所以我将不胜感激任何帮助。

Hey there. I want to use Flip (http://lab.smashup.it/flip/) for one of my projects. But I want the links to make the flip action inside the divs that are going to be flipped. I stumbled across a question here and the reply was very helpful, and by using that codes I managed to achieve what I want. But now the issue is when the page first loads it automatically flips before clicking any link. I don't know much about jQuery. So I would appreciate any help.

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

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

发布评论

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

评论(2

寂寞清仓 2024-09-04 17:01:24

确保您没有在 document.ready 上调用 trigger() 或 click()

make sure you are not calling trigger() or click() on document.ready

耶耶耶 2024-09-04 17:01:24

如果您使用与您提到的问题完全相同的代码,则问题是这样的:

$(document).ready(function(){
   $("#flip1").click(f2b);
   $("#flip2").click(b2f);
   $("#flip2").click();
});

您在 document.ready 上调用 .click

If you're using exactly the same code from the question you've mentioned, the problem is this:

$(document).ready(function(){
   $("#flip1").click(f2b);
   $("#flip2").click(b2f);
   $("#flip2").click();
});

You're calling .click on document.ready

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