<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var txt1=parselnt(document.getElementById("txt1").value);
var txt2=parselnt(document.getElementById("txt2").value);
var select=document.getElementById("select").value;
var result;
switch(select)
{
case'+':
result=txt1+txt2;
break;
case'-':
result=txt1-txt2;
break;
case'*':
result=txt1*txt2;
break;
case'/':
result=txt1/txt2;
break;
}
document.getElementById("fruit").value=result;
}
</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="count()"/>
<input type='text' id='fruit' />
</body>
</html>
parseInt 驼峰命名 这个是全局函数 ,区分大小写
记得加上<meta charset="utf-8" />,不然title的中文显示不了,parseInt都能打错,基础知识还不够
parseInt中的I是i的大写字母,不是L的小写,整数类型Int;
parseInt,中间十大写的I不是小写的L