我试图让一个 div 元素爆炸然后重新出现。这部分工作正常,但是当创建新的 div 时,爆炸效果在副本上不起作用。
这是我的jQuery:
$(document).ready(function(){
$("#thediv").click(function(){
$("#thediv").effect('explode');
$(".mainBody").append("<div id='thediv'> </div>");
});
});
这是我的HTML:
<div class="mainBody" align = "center">
<div id="thediv" style=" width: 100px; height: 100px; background-image: url('http://smartisan.net/stripes.png')"></div>
</div>
如果你想看的话,这里是页面:就在这里
谢谢