标签:
1 //demo 2 var num=99 3 switch(n){ 4 case 80<n: 5 document.write("优秀");break; 6 case 70<n: 7 document.write("良好");break; 8 } 9 10 /** 11 我认为会输出"优秀" 12 上面的情况没有任何的输出,因为case 后是一个布尔表达式 13 要想有输出,把switch(n)改为 switch(true) 14 15 */
标签:
原文地址:http://www.cnblogs.com/shijiu520/p/5812345.html