您只需要删除括号:
addContact(entityId, refreshContactList);
然后,这将传递函数而不先执行它。
这是一个例子:
function addContact(id, refreshCallback) { refreshCallback(); // You can also pass arguments if you need to // refreshCallback(id);}function refreshContactList() { alert('Hello World');}addContact(1, refreshContactList);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)