<!DOCTYPE html>
<html>
<script>
window.onload = hello;
function hello(){
 test(function aaa(){
  alert('callback success');
 });
 
 test();
}
function test(callback){
 if(typeof callback  != 'undefined'){
 
  callback();
 }
}
</script>
</html>
No comments:
Post a Comment