gpt4 book ai didi

javascript - 如何在自身内部调用函数

转载 作者:数据小太阳 更新时间:2023-10-29 06:10:28 28 4
gpt4 key购买 nike

我有一个函数,我想在最后一行结束后在内部再次调用。

如果我显示代码,也许会更容易理解。

function updateQuantity(){ 
// further code where I change same data
// and now I want to start function again but with remembering the input element that called it previously
updateQuantity(this); // I tried it this way but it doesn't work
}

有什么想法吗?

最佳答案

答案很简单,在 updateQuantity 函数中使用 updateQuantity.call(this) 就足够了——当我们使用 call 和添加this,函数将再次启动并记住之前调用updateQuantity的输入元素。

关于javascript - 如何在自身内部调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37196553/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com