在寫程式碼的時候,我們有些時候回碰上這種情況,有人會將一個函數賦值給一個變量,而這個時候我們該怎麼去呼叫這個函數呢?
下面就讓我們用程式碼說話。
首先我們將一個函數賦值給一個變數
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <script> var a = function ass(){alert("hello")}; //将函数赋值给变量 </script> <body> </body> </html>
然後我們在按鈕中新增點擊事件,並透過變數來呼叫這個函數
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <script> var a = function ass(){alert("hello")}; //将函数赋值给变量 </script> <body> <button onclick="a()" >单击事件</button> </body> </html>
最後我們來看效果
#以上是js將函數賦值給變數後該怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!