与这个苦苦挣扎,我似乎无法找到一个好的资源。
背景:我正在创建一个步进系统,并且我在一个属性中传递方向/顺序data-step="1"
。这控制了将显示的 ID(这部分很容易),以及需要调用以获取正确信息的函数。
问题基本上是,如何调用我需要动态构建的函数?
IE:
step1(); step2();
除了我想在那里动态添加那个数字。
// In an essense, what I'm trying to achieve:
// It's always called step and then followed by a number
[step + directionNumber](); // which isn't working
也尽量避免使用eval
,因为我们都知道它是邪恶的:)