jQuery hide()方法
jQuery ()方法用于隐藏所选元素。
语法:
$(selector).hide();
$(selector).hide(speed, callback);
$(selector).hide(speed, easing, callback);
speed : 这是一个可选参数。它指定延迟的速度。可能的值有slow,fast和毫秒。
easing : 它指定要用于过渡的缓动函数。
callback : 这也是一个可选参数。它指定在hide()效果完成后要调用的函数。
让我们举一个例子来看看jQuery hide效果。
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
(document).ready(function(){("#hide").click(function(){
$("p").hide();
});
});
</script>
</head>
<body>
<p>
<b>This is a little poem: </b><br/>
Twinkle, twinkle, little star<br/>
How I wonder what you are<br/>
Up above the world so high<br/>
Like a diamond in the sky<br/>
Twinkle, twinkle little star<br/>
How I wonder what you are
</p>
<button id="hide">Hide</button>
</body>
</html>
输出: