您好,登錄后才能下訂單哦!
js將函數(shù)賦值給變量后的使用方法?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
在編寫代碼的時候,我們有些時候回碰上這種情況,有人會將一個函數(shù)賦值給一個變量,這個時候我們該怎樣去調(diào)用這個函數(shù)呢?
首先我們將一個函數(shù)賦值給一個變量
<!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")}; //將函數(shù)賦值給變量 </script> <body> </body> </html>
然后我們在按鈕中添加單擊事件,并通過變量來調(diào)用這個函數(shù)
<!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")}; //將函數(shù)賦值給變量 </script> <body> <button onclick="a()" >單擊事件</button> </body> </html>
最后我們來看一下效果
感謝各位的閱讀!看完上述內(nèi)容,你們對js將函數(shù)賦值給變量后的使用方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。