小早川桃沢
2019-08-08 11:00
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var a;
var txt1=document.getElementById("txt1").value
var txt2=document.getElementById("txt2").value
var txt3=document.getElementById("txt3").value
switch(txt3){
case"+":
a=parseInt(txt1)+parseInt(txt2);
braek;
case"-":
a=parseInt(txt1)-parseInt(txt2);
break;
case"*":
a=parseInt(txt1)*parseInt(txt2);
break;
case"/":
a=parseInt(txt1)+parseInt(txt2);
break;
}
document.getElementById("fruit").value=a
}
</script>
</head>
<body>
<input type='text' id='txt1' />
<select id='txt3'>
<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>
你看下这个 跟你下面写的有什么区别没
从你这个代码看,我发现了3个细节问题
1、是break,不是braek;
2、case后面的值没有空格;
3、除法错误,不是+ 是/
正确的代码为:
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var a;
var txt1=document.getElementById("txt1").value;
var txt2=document.getElementById("txt2").value;
var txt3=document.getElementById("txt3").value;
switch(txt3){
case "+":
a=parseInt(txt1)+parseInt(txt2);
break;
case "-":
a=parseInt(txt1)-parseInt(txt2);
break;
case "*":
a=parseInt(txt1)*parseInt(txt2);
break;
case "/":
a=parseInt(txt1)/parseInt(txt2);
break;
}
document.getElementById("fruit").value=a
}
</script>
</head>
<body>
<input type='text' id='txt1' />
<select id='txt3'>
<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>
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题