我的问题有点复杂,但我会尽我所能。
我正在制作一个涉及大量 javascript 的网站。我没有设置所有内容,因此某些脚本没有与任何内容相关联。我想制作一个弹出式控制台,允许我输入我希望计算机执行的功能并让计算机执行此操作。
我可以有一个变量,然后使用该变量示例调用一个函数:
var CodeApprentice = "Cat"; function Cat(){ document.write("kitten"); } function Dog(){ document.write("puppy"); } //Here is were I want to call the function with the variable CodeApprentice // and have it do the cat function function CodeApprentice();
我知道我没有正确地做到这一点,但有没有办法做到这一点,或者我只是疯了?