我有一个innerHTML,其中包含数字或文本数据,根据我编写的js自动化,该数据将继续翻转数字或字符。现在,我想使用这些滚动数字或字符作为标记来调用其他函数,而最后一部分无需任何手动交互。换句话说,已经自动化的数据必须依次自动化另一个功能。怎么做?
const dataInput1 = 'kangaroo';
const dataInput2 = 'honeybadger';
const functionCollection = new Object()
functionCollection.kangaroo = function () {
console.log('we live in Australia')
}
functionCollection.honeybadger = function () {
console.log('we are immortal')
}
functionCollection[dataInput1]()
//prints 'we live in Australia'
functionalCollection[dataInput2]()
//prints 'we are immortal'
希望,这就是你的要求。