javasscript中的switch语句

昨天改一个jsp页面,想在js中加一个switch语句,一直没成功。今天上午耐心尝试着,终于成功了。

代码如下:

 

function disSection(){
    var len=document.getElementById("len").value;
    switch(len){
    case "4" :
        alert("i am here");
        document.getElementById("option4").style.display="inline";
        break;
    case "5" :
        document.getElementById("option4").style.display="inline";
        document.getElementById("option5").style.display="inline";
        break;
    case "6" :
        document.getElementById("option4").style.display="inline";
        document.getElementById("option5").style.display="inline";
        document.getElementById("option6").style.display="inline";
        break;
    default:
        break;
    };
   
}
window.onload=disSection;

 

注意

1  case 后的如果不是变量需加双引号""

2  swich结束的花扩符外要加分号;

 

你可能感兴趣的:(jsp)