首页 > 代码库 > Js 自定义回调函数
Js 自定义回调函数
参考 http://mlxnle.iteye.com/blog/1670679
<!doctype html><html lang="es"><head> <meta charset="UTF-8"> <title>HTML5</title> <link rel="stylesheet" href="http://www.mamicode.com/#" /><!-- css样式 --> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script></head><script type="text/javascript">$(document).ready(function(){ /** * 回调函数测试方法 * * @param callback * 被回调的方法 */ function testCallback(callback) { alert(‘come in!‘); callback(); } /** * 开始测试方法 */ testCallback(function(){ alert(‘a‘); $("#div1").fadeIn(); $("#div2").fadeIn("slow"); $("#div3").fadeIn(3000); }); }); </script><body> <div class="test"></div> <div id="div1" style="width:80px;height:80px;display:none;background-color:red;"></div><br> <div id="div2" style="width:80px;height:80px;display:none;background-color:green;"></div><br> <div id="div3" style="width:80px;height:80px;display:none;background-color:blue;"></div></body></html>
Js 自定义回调函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。