!
在这个条件中使用非运算符 ( ) 给了我:
“未捕获的语法错误:意外的令牌!”
if (text.includes(input[j])) {
$(Messages[i]).hide();
}
else if !(text.includes(input[j])) {
$(Messages[i]).show();
}
为什么不在!
这里工作?
!
在这个条件中使用非运算符 ( ) 给了我:
“未捕获的语法错误:意外的令牌!”
if (text.includes(input[j])) {
$(Messages[i]).hide();
}
else if !(text.includes(input[j])) {
$(Messages[i]).show();
}
为什么不在!
这里工作?