Home  >  Article  >  Web Front-end  >  A simple example of application of JS callback function_javascript skills

A simple example of application of JS callback function_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:36:021151browse

JS callback function is very simple, look at the code:

In a.js

var myback = null; 
function load(obj){ 
myback = obj; 
} 

function save(){ 
// 后台请求 
$.ajax.post...... 
// 调用回调函数 
myback(); 
} 

Call in b.js

// 就是把要回调的函数当成参数传递过去!

load(function(){ 
this.hide(); 
})
Statement:
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