Maison > Article > interface Web > Comment utiliser js après avoir attribué une fonction à une variable
Lors de l'écriture de code, nous rencontrons parfois cette situation. Quelqu'un attribue une fonction à une variable à ce moment-là ?
Parlons en code.
Nous attribuons d'abord une fonction à une variable
<!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>
Ensuite, nous ajoutons un événement de clic au bouton et appelons la fonction via la variable
<!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>
Enfin, jetons un œil à l'effet
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!