赞
踩
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Document</title>
- <style>
- div{
- width: 300px;
- height: 300px;
- background:orange;
- display: none;
- }
- </style>
- </head>
- <body>
- <input type="button" value="显示">
- <input type="button" value="隐藏">
- <input type="button" value="切换">
- <div></div>
- <!-- 1.需要引入外部的jQuery文件 -->
- <script type="text/javascript" src="../jquery-3.2.1.js"></script>
- <script type="text/javascript">
- $(function () {
- $("input").eq(0).click(function () {
- // fadeIn(null/speed,easing,callback)/fadeOut()
- $("div").fadeIn("slow",function () {
- console.log(1111)
- })
- })
- $("input").eq(1).click(function () {
- $("div").fadeOut("slow",function () {
- console.log(2222)
- })
- })
- $("input").eq(2).click(function () {
- $("div").fadeToggle("slow",function () {
- console.log(3333)
- })
- })
- })
- </script>
- </body>
- </html>
上述运行结果:
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。