当前位置: 代码迷 >> Web前端 >> jQuery-hide()跟remove()
  详细解决方案

jQuery-hide()跟remove()

热度:291   发布时间:2012-11-23 00:03:43.0
jQuery-hide()和remove()
<script>
    for (var i = 0; i < 5; i++) {
      $("<div>").appendTo(document.body);
    }
    $("div").click(function () {
      $(this).hide(2000, function () {
        $(this).remove();
      });
    });
</script>

?

  相关解决方案