我试图在单击时激活 jQuery 'replaceWith' 功能以将 div1 替换为 div2,然后再次使用 'replaceWith' 在单击时将 div2 替换为 div1。
一切正常,除了单击 div2 时,div1 不会重新出现。
我的代码是:
$(document).ready(function(){
$("#open_doors").click(function(){
$("#leftdoor_inner").animate({"left": "-=164px"}, 'slow');
$("#leftdoor_outer").animate({"left": "-=74px"},'slow');
$("#rightdoor_inner").animate({"left": "+=164px"},'slow');
$("#rightdoor_outer").animate({"left": "+=74px"},'slow');
$("#open_doors").replaceWith($("#close_doors"));
});
$("#close_doors").click(function(){
$("#leftdoor_inner").animate({"left": "+=164px"},'slow');
$("#leftdoor_outer").animate({"left": "+=74px"},'slow');
$("#rightdoor_inner").animate({"left": "-=164px"},'slow');
$("#rightdoor_outer").animate({"left": "-=74px"},'slow');
$("#close_doors").replaceWith($("#open_doors"));
});
});
几乎可以工作的jsfiddle在这里:
我很确定我的问题已在下面的链接中得到解答,但我不知道如何将其应用于我的确切代码。
谢谢你。