输出结果为NAN 求大神解答
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function jc(){
var tt1=document.getElementById("txt1").value;
//获取第一个输入框的值
var tt2=document.getElementById("txt2").value;
//获取第二个输入框的值
var tt3=document.getElementById("select").value;
var jg= "";
//获取选择框的值
switch(tt3){
case"+":
jg=parseInt("tt1") + parseInt("tt2") ;
break;
case"-":
jg=parseInt("tt1") - parseInt("tt2");
break;
case"*":
jg=parseInt("tt1") * parseInt("tt2");
break;
case"/":
jg=parseInt("tt1") / parseInt("tt2");
}
document.getElementById("fruit").value=jg;
}
</script>
</head>
<body>
<input type='text' id='txt1' />
<select id='select'>
<option value='+'>+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type='text' id='txt2' />
<input type='button' value=' = ' onclick="jc()"/> <!--通过 = 按钮来调用创建的函数,得到结果-->
<input type='text' id='fruit'/>
</body>
</html>
结果一直未NAN,想知道错在哪