首页javascripthidejQuery Method - 如何使用hide(\'slow\')慢慢隐藏div元素

jQuery Method - 如何使用hide(\'slow\')慢慢隐藏div元素

我们想知道如何使用hide(\'slow\')慢慢隐藏div元素。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.6.2.js'></script>
<script type='text/javascript'>
$(function(){
    $('.close').click(function() {
        $('.alert-message').hide('slow');
    });
});
</script>
</head>
<body>
  <div class="alert-message success">
    <a class="close" style="">&times</a>
    <p>this is a message.</p>
  </div>
</body>
</html>