var today=new Date(); var abc=today.getMonth(); switch (abc) { case 0: case 1: case 2: document.write("现在是春季"); break; case 3: case 4: case 5: document.write("现在是夏季"); break; case 6: case 7: case 8: document.write("现在是秋季"); b…
Switch在一些计算机语言中是保留字,其作用大多情况下是进行判断选择.以PHP来说,switch(开关语句)常和case break default一起使用 典型结构 switch($controllingExpression){ case 'constantExpression1':echo 'statement1'; case 'constantExpression2':echo 'statement2'; case 'constantExpression3':echo 'statemen…