作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果验证函数返回 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/
我是一名优秀的程序员,十分优秀!