gpt4 book ai didi

javascript - 如何在另一个函数中停止使用函数执行js

转载 作者:行者123 更新时间:2023-11-30 15:58:40 24 4
gpt4 key购买 nike

如果验证函数返回 false,我试图停止 js 执行。但是,如果它是假的,脚本不会停止,我可以看到消息“这将运行??” - 有人会提示我为什么在 submit() 中调用 validate() 函数不起作用吗?这里出了什么问题?提前致谢。

// validate name
function validate(name){
if(name.length < 1){
console.log('false - length: ' + name.length);
return false;
}
}

// submit function
function submit(){
var name = '';

// if name is empty, the script should stop.
validate(name);

console.log("This will run??");
return true;
}

submit();

最佳答案

function validate(name){
if(name.length < 1){
console.log('false - length: ' + name.length);
return false;
}
return true;
}

你的验证函数应该返回真(否则它返回未定义,这是假的)

function submit(){
var name = '';

// if name is empty, the script should stop.
if(validate(name)) {
console.log("This will run??");
return true;
} else {
return false;
}
}

关于javascript - 如何在另一个函数中停止使用函数执行js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38089061/

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