请问我的问题出在哪里?
<script type="text/javascript">
window.onload=function (){
var oTxt1=document.getElementById('txt1');
var oBtn=document.getElementById('btn');
var oTxt2=document.getElementById('txt2');
var oTxt3=document.getElementById('txt3');
oBtn.onclick=function (){
switch(select){
case '+':
oTxt3.value='parseInt(oTxt1.value)+parseInt(oTxt2.value)'
break;
case '-':
oTxt3.value='parseInt(oTxt1.value)-parseInt(oTxt2.value)'
break;
case '*':
oTxt3.value='parseInt(oTxt1.value)*parseInt(oTxt2.value)'
break;
case '/':
oTxt3.value='parseInt(oTxt1.value)/parseInt(oTxt2.value)'
}
}
}
</script>