jquery效果-20

简介: jquery效果-20

image.png

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="./js/jquery.min.js"></script>
<style>
div {
width: 100px;
height: 100px;
background-color: pink;
        }
</style>
</head>
<body>
<button>显示</button>
<button>隐藏</button>
<button>切换</button>
<div></div>
<script>
$(function() {
$("button").eq(1).click(function() {
$("div").hide(1000, function() {
alert(1);
                });
            });
$("button").eq(0).click(function() {
$("div").show(1000, function() {
alert(1);
                });
            });
$("button").eq(2).click(function() {
$("div").toggle(1000, function() {
alert(1);
                });
            })
        });
</script>
</body>
</html>


运行结果

image.png

相关文章
|
6月前
|
JavaScript 前端开发
jQuery
jQuery 选择器是 jQuery 中的核心功能之一,它允许我们通过 CSS 选择器语法来选择 HTML 文档中的元素。jQuery 选择器比 CSS 选择器更加强大,因为它可以用于查找、筛选、选择和操作 HTML 元素,而且不需要了解浏览器的兼容性问题。
34 2
|
6月前
|
JSON JavaScript 前端开发
关于jQuery
关于jQuery
30 2
|
6月前
|
JavaScript 前端开发
什么是jQuery?
什么是jQuery?
|
11月前
|
JSON JavaScript 数据格式
jQuery_02
jQuery_02
50 0
|
11月前
|
JavaScript
jQuery_01
jQuery_01
44 0
|
机器学习/深度学习 存储 JSON
Jquery
介绍Jquery
|
前端开发 JavaScript
|
JavaScript
jquery的使用-4
jquery的使用-4
88 0
jquery的使用-4
|
JavaScript 前端开发 Go
html+js+Jquery(三)
html+js+Jquery(三)
171 1
html+js+Jquery(三)
|
前端开发 JavaScript 数据安全/隐私保护
html+js+Jquery(一)
html+js+Jquery(一)
219 0
html+js+Jquery(一)