Home > Web Front-end > JS Tutorial > body text

A simple example of application of JS callback function_javascript skills

WBOY
Release: 2016-05-16 16:36:02
Original
1186 people have browsed it

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(); 
} 
Copy after login

Call in b.js

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

load(function(){ 
this.hide(); 
})
Copy after login
Related labels:
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!