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');
}
您将函数作为参数传递,但dragTrack
需要更改为接受回调并调用它
dragTrack(helloWorld);
function dragTrack(callback) {
alert('first');
if (callback) {
callback();
}
}
function helloWorld() {
alert('second');
}