jquery div 交换

发布于 2024-10-27 13:26:00 字数 156 浏览 2 评论 0原文

我怎样才能做到当你第二次点击时它会返回?我想我必须以某种方式找到活跃的,但不确定。

$("#test").click(function(){
    $("#dsa").fadeOut()
    $("#asd").fadeIn()
  });

How can I make it so when you click the 2nd time it will go back? I guess I gotta somehow find the active one but not sure.

$("#test").click(function(){
    $("#dsa").fadeOut()
    $("#asd").fadeIn()
  });

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

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

发布评论

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

评论(2

再浓的妆也掩不了殇 2024-11-03 13:26:00

您正在寻找类似 toggle() 的东西吗?

You looking for something like toggle() ?

纵情客 2024-11-03 13:26:00

只需使用 .toggle()

$("#test").click(function(){
    $("#dsa, #asd").toggle(400);
});

Just use .toggle():

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