hide()是jQuery中的一种内置方法,用于隐藏所选元素。
用法:
$(selector).hide(duration, easing, call_function);
选择器是选定的元素。
参数:它接受以下指定的三个参数:
- duration:它指定隐藏效果的速度。
- easing:它指定元素在动画的不同点的速度。
- call_function:这是隐藏操作后要执行的回调函数。
返回值:它不返回任何值。
代码1:
在下面的代码中,没有参数用于传递给此方法。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<!-- jQuery code to show the working of this method -->
<script>
$(document).ready(function() {
$(".b1").click(function() {
$("p").hide();
});
});
</script>
<style>
div {
width: 50%;
height: 80px;
padding: 20px;
margin: 10px;
border: 2px solid green;
font-size: 30px;
}
.b1 {
margin: 10px;
}
</style>
</head>
<body>
<div>
<p>GeeksforGeeks !.</p>
</div>
<!-- click on this button and above paragraph will disappear -->
<button class="b1">Click me !</button>
</body>
</html>
输出:
在点击“点击我!”按钮之前,
点击“点击我!”按钮后,
代码2:
在下面的代码中,参数传递给此方法。
<html>
<head>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
<!-- jQuery code to show the working of this method -->
$(document).ready(function() {
$(".btn1").click(function() {
$("p").hide(1000, function() {
alert("Hide() method has finished its working!");
});
});
});
</script>
<style>
p {
width: 40%;
padding: 20px;
height: 50px;
border: 2px solid green;
}
</style>
</head>
<body>
<p>GeeksforGeeks.!</p>
<!-- click on this button and above paragraph will hide -->
<button class="btn1">Click to Hide</button>
</body>
</html>
输出:
在单击“Click to Hide”按钮之前,
单击“Click to Hide”按钮后,
相关用法
- JQuery after()用法及代码示例
- JQuery one()用法及代码示例
- JQuery has()用法及代码示例
- JQuery on()用法及代码示例
- JQuery eq()用法及代码示例
- JQuery val()用法及代码示例
- JQuery last()用法及代码示例
- JQuery first()用法及代码示例
- JQuery children()用法及代码示例
- JQuery hasClass()用法及代码示例
- JQuery slideUp()用法及代码示例
注:本文由纯净天空筛选整理自kundankumarjha大神的英文原创作品 jQuery | hide() with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。