Home > Web Front-end > JS Tutorial > callback function in js

callback function in js

巴扎黑
Release: 2016-12-06 10:34:09
Original
1044 people have browsed it

<%@ 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>
Copy after login


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template