Comment appeler l'une des fonctions répertoriées en fonction de la valeur d'une variable Called_function
?
function a() { alert('You called the a function.'); } function b() { alert('You called the b function'); } function c() { alert('You called the c function'); } const possible_strings = ["a", "b", "c"]; const called_function = Math.floor(Math.random() * possible_strings.length);
Cela ne fonctionne pas :
window[被调用函数]();
Lors de l'exécution de window[called_function]();
, il s'affiche comme indéfini.
Vous définissez
Called_function
sur l'index de l'élément dans le tableau. Ensuite, vous devez rechercher cet index dans le tableau pour obtenir le nom de la fonction.Vous pouvez également référencer la fonction directement au lieu d'utiliser une chaîne, comme ceci :