Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能让“好选择”的代码行不被抢购,而是出现在与上一个关于欧洲的问题相同的位置?反正有告诉它不要拍吗?
我真的只想要一个响应在单击时淡入或淡出但在同一位置。谢谢!下面的所有代码都在Tumblr(HTML、CSS 和 JQuery)上运行。
patriciahighsmith.tumblr.com/quiz
您可以同时尝试淡出和 SlideUp,而不只是淡出,这样内容不仅会消失,还会向上滑动。或者,您只能在第一个部分淡出并且已经隐藏时才显示下一部分。
做你想做的事,你需要:
var me = $(this); $('.msg_body').fadeOut("slow", function() { $(me.attr("href")).fadeIn("slow"); });