关于对象中的switch问题。
下方代码中,很明显,传入的 i 是 0,1,2, 但是,运行的时候函数exec内部的switch语句却只执行 default部分,,求大神答疑,如何才能变成正常的switch......
<html>
<head>
<title>test</title>
<script>
function Ai(arr){
this.exec = exec;
for(var a in arr){
this.exec(a);
}
}
function exec(i){
switch(i){
case 0:
document.write("执行0");
break;
default:
document.write("默认:"+i+"<br/>");
}
}
var arr = [0,2,3];
var g = new Ai(arr);
</script>
</head>
<body>
</body>
</html>