<%@ 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+"/";
%>
<!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>
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号