如果我使用if,我的checkforZeroQuantity函数不会被调用。以下是示例代码
function myButtonClicked() {
if (checkforZeroQuantity()) {
alert("checked");
}
}
function checkforZeroQuantity() {
var x = 1;
if (x == 0) {
return false;
} else {
retrun true;
}
}
答案 0 :(得分:2)
这是因为你有拼写错误,如下所示
else {
retrun true; // it should be return
}
更正拼写,然后重试。
答案 1 :(得分:2)
看这里:
function checkforZeroQuantity() {
var x = 1;
if (x == 0) {
return false;
} else {
return true;
}
}
答案 2 :(得分:2)
代码中存在拼写错误,请更改' retrun'到'返回'。
else
return true;
答案 3 :(得分:0)
首先,else
区块中有一个拼写错误。:)
其次,在===
==
代替Javascript
是一种很好的做法