我想调用我创建的js函数,但是当我在animejs函数内部时无法调用该函数
function showCommments(){
console.log(`Hello there`);
}
anime.add({
targets: `enter code here`
showComments(),
})
答案 0 :(得分:0)
您有三个问题。首先是您有一个名为function
的{{1}},但是您尝试调用一个名为showCommments
的{{1}},但该名称不存在。第二个是您误解了代码。在实际执行{{之前,不会尝试在function
JS showComments
中调用showCommments
,而是在anime
JS function
调用中调用anime
1}}。第三个问题是您尝试将对象作为参数传递给function
JS function
,但是由于其代码无效,因此将不会执行该对象。我给了您一个固定的代码,但是我给您的代码很可能无法满足您的确切需求,因为它们的含义非常模糊:
anime