jQuery hide()和show()
语法:
$(selector).hide(speed,callback);
$(selector).show(speed,callback);
可选的speed参数指定隐藏/显示的速度,可以采用以下值:“slow”,“fast”或毫秒。
可选的回调参数是在hide()或show()方法完成后执行的函数(您将在后面的章节中了解有关回调函数的更多信息)。
使用jQuery,您可以使用hide()和show()方法隐藏和显示HTML元素:
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
});
</script>
</head>
尝试一下
以下示例使用hide()演示speed参数:
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").hide(1000);
});
});
</script>
</head>
尝试一下