这是我正在尝试的:
if (score > 0 < 8) { alert(score); }
但是,上述语法错误.
if (score > 0 && score < 8){ alert(score); }
附:这与jQuery无关.这是简单的,裸体的JavaScript!