条件 ? true : flase 运算符是 if...else 语句的快捷方式。它通常被用作较大表达式的一部分 代码: <script> 5 > 3 ? alert("5大于3") : alert("5小3") ; </script> 结果: "5大于3"