jquery div 交换
我怎样才能做到当你第二次点击时它会返回?我想我必须以某种方式找到活跃的,但不确定。
$("#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找类似 toggle() 的东西吗?
You looking for something like toggle() ?
只需使用
.toggle()
:Just use
.toggle()
: