qq_weare伐木累_1
2017-04-26 15:35
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var x=document.getElementById("txt1").value;
var y=document.getElementById("txt2").value;
var z=document.getElementById("select").value;
var result;
switch(select){
case "+":
result=x+y;
break;
case "-":
result=x-y;
break;
case "*":
result=x*y;
break;
case "/":
result=x/y;
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>
document.getElementById("txt1").value得到的是一个字符串类型,要用parseInt(document.getElementById("txt1").value)转换为整数;
switch(select)改为switch(z)
switch(select)
var result;
上面俩处错,自己想想怎么改,试试看,改不出再问
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题