在 JavaScript 中將函式傳遞為回撥


下面是在 Javascript 中將函式傳遞為回撥的程式碼:-

範例

 實際演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .result {
      font-size: 20px;
      font-weight: 500;
      color: blueviolet;
   }
</style>
</head>
<body>
<h1>Passing a function as a callback</h1>
<div class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to pass the add2() function as callback to multiply9() function</h3>
<script>
   let resEle = document.querySelector(".result");
   function add2(a) {
      return a + 2;
   }
   function multiply9(fn, num) {
      return fn(num) * 9;
   }
   document.querySelector(".Btn").addEventListener("click", () => {
      resEle.innerHTML = "The number returned = " + multiply9(add2, 12);
   });
</script>
</body>
</html>

輸出

單擊“點這裡”按鈕時 -

更新於: 20-Jul-2020

180 次瀏覽

開啟您的職業

完成課程並獲得認證

開始
廣告