gpt4 book ai didi

javascript - 如何通过按下按钮停止javascript的功能

转载 作者:行者123 更新时间:2023-11-30 15:21:48 25 4
gpt4 key购买 nike

我创建了调用其他函数的函数,例如

function abc()
{
def();
}

function def()
{
xyz();
}

假设 def() 被调用并且在任何时候我都有一个按钮

<button>STOP</button>

如果我按下它,执行将终止,这意味着如果再次执行,它应该从头开始再次运行。

我在 SO 中看到过其他解决方案,但它们展示了如何暂停循环。谁能帮帮我?

最佳答案

您可以使用变量来确定您的代码是运行还是终止:

var abort = false;

function abc()
{
if (abort) {
return;
}

def();
}

function def()
{
if (abort) {
return;
}

xyz();
}

<button onclick="abort = true">STOP</button>

您唯一需要添加的是在触发主要功能时将 abort 重置回 false。

关于javascript - 如何通过按下按钮停止javascript的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43623745/

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