gpt4 book ai didi

javascript - 从 JavaScript 函数中退出

转载 作者:行者123 更新时间:2023-11-30 10:32:58 26 4
gpt4 key购买 nike

我看到很多地方有类似的问题,但无法解决。

这是我的功能:

function validate_form(){
$('#form_data input[type="text"]').each(function(){
value = $(this).val().trim();
if(value != '' && value != null && value != 0 ){
return true;
}
});
return false;
}

它不会在 return true; 时退出。我也尝试过 e.preventDefault() 但没有用。

最佳答案

return 将从它所在的函数返回。在您的代码中,这是您传递给 each 的匿名函数。查看documentation for each :

You can stop the loop from within the callback function by returning false.

您返回的是 true,而不是 false,因此您不会停止循环。在函数的第 5 行将 true 更改为 false

关于javascript - 从 JavaScript 函数中退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15739753/

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