js中的回调函数
程序员文章站
2022-05-17 14:30:46
...
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
String path= request.getContextPath();
String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
pageEncoding="UTF-8"%>
<%
String path= request.getContextPath();
String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <base href="<%=basePath%>"/> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>回调函数</title> <script type="text/javascript" src="js/jquery-1.7.1.min.js"></script> <script type="text/javascript"> //返回值是一个函数格式 function a(callBackFunction){ console.log("这是parsent函数a"); var m=1; var n=3; return callBackFunction(m,n); } function b(m,n){ console.log("这是回调函数b"); return m+n; } $(function(){ var result=a(b); //输出结果是:4 console.log("result="+result); var c=function(){ return 3*4; }; console.log("输出的结果是:"+c()); }); </script> </head> <body> </body> </html>
上一篇: Oracle静态参数文件
下一篇: ORA-12516错误分析与解决
推荐阅读
-
ThinkPHP中公共函数路径和配置项路径的映射分析,thinkphp函数_PHP教程
-
js中的循环怎么使用?
-
js如何实现设计模式中的模板方法_javascript技巧
-
js异步回调Async/Await与Promise的区别,Async/Await替代Promise的6个理由
-
php stripslashes() 函数删除、过滤字符串中的反斜杠
-
深入认识javascript中的eval函数_javascript技巧
-
JS中Date日期函数中的参数使用介绍_基础知识
-
js延时定时器模拟qq中划过头像会显示个人信息的功能(代码)
-
详解PHP中的mb_detect_encoding函数使用方法_php技巧
-
String对象中indexOf()的js代码