什麼是 JavaScript 中的回撥函式?
函式傳入另一個函式時,就稱之為回撥函式。它遍歷該函式,而不是呼叫已傳入的函式。
例
你可以嘗試執行以下程式碼,瞭解如何處理回撥函式 -
<html>
<head>
<script>
var callback = function(myCallback) {
setTimeout(function() {
myCallback();
}, 5000);
};
document.write("First is displayed");
document.write("<br>Second is displayed");
callback(function() {
document.write("This is Callback function");
});
document.write("<br>Last is displayed");
</script>
</head>
</html>
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP