当前位置:  开发笔记 > 编程语言 > 正文

回调函数jQuery

如何解决《回调函数jQuery》经验,为你挑选了1个好方法。

helloWorld()执行dragTrack()功能后需要运行.但是helloWorld之后没有被召唤dragTrack.

dragTrack(function(){
    helloWorld();
});

function dragTrack() {
    alert('first');
}

function helloWorld() {
    alert('second');
}

Arun P Johny.. 7

您将函数作为参数传递,但dragTrack需要更改为接受回调并调用它

dragTrack(helloWorld);

function dragTrack(callback) {
  alert('first');
  if (callback) {
    callback();
  }
}

function helloWorld() {
  alert('second');
}



1> Arun P Johny..:

您将函数作为参数传递,但dragTrack需要更改为接受回调并调用它

dragTrack(helloWorld);

function dragTrack(callback) {
  alert('first');
  if (callback) {
    callback();
  }
}

function helloWorld() {
  alert('second');
}
推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有