jQuery show()方法

jQuery show()方法

jQuery show()方法用于显示所选元素。

语法:

$(selector).show();
$(selector).show(speed, callback);
$(selector).show(speed, easing, callback);

speed : 这是一个可选参数。它指定延迟的速度。可能的值有 slow、fast 和毫秒。

easing : 它指定要用于过渡的缓动函数。

callback : 这也是一个可选参数。它指定在 show() 效果完成后要调用的函数。

让我们来看一个示例,以了解 jQuery show 效果。

<!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();
    });("#show").click(function(){
        $("p").show();
    });
});
</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>
<button id="show">Show</button>
</body>
</html>

输出:

jQuery show()方法

使用jQuery show()效果并设置速度参数

让我们看一个jQuery show()效果的例子,速度为1500毫秒。

$(document).ready(function(){
        $("#hide").click(function(){
        $("p").hide(1000);
    });
    $("#show").click(function(){
        $("p").show(1500);
    });
});

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程