if ({ $('#Container,#NextContainer').show()
else (var t < 20);
});
我一直收到语法错误,我尝试移动并添加括号和括号,直到我疯了。这有什么不对吗?
答案 0 :(得分:1)
像错误一样说整个语法都不正确。你想做点什么。
if (condition) {
//if it matches the condition do this
} else {
//if it doesn't matches the condition do this
}
答案 1 :(得分:0)
我已经更正,语法将是 -
if(<your condition>)
{
$('#Container,#NextContainer').show();
}
else
var t < 20;
如果在if / else块中有单行(语句),你可以跳过我在else块中编写的开括号和结束花括号{}如果你写了多个语句而没有{} if / else总是执行第一个语句。