HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>代码学院(codexy.cn)</title> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script> </head> <body> <script> $(function () { // 将被添加到列表的一个简单的函数 var foo = function( value ) { alert( "foo:" + value ); }; var callbacks = $.Callbacks(); // 添加函数 "foo" 到列表 callbacks.add( foo ); // 传入参数调用所有回调列表 callbacks.fire( "hello" ); // 输出: "foo: hello" callbacks.fire( "world" ); // 输出: "foo: world" // 添加另一个函数到列表 var bar = function( value ){ alert( "bar:" + value ); }; // 添加这个函数到列表 callbacks.add( bar ); // 传入参数调用所有回调列表 callbacks.fire( "hello again" ); // 输出: // "foo: hello again" // "bar: hello again" }) </script> </body> </html>
动行结果