精慕门7131591
2016-11-15 11:15
function count(){ var first=parselnt(document.getElementById("txt1").value);//获取第一个输入框的值 var second=parselnt(document.getElementById("txt2").value);//获取第二个输入框的值 var select=document.getElementById("select").value;//获取选择框的值 var result;//获取通过下拉框来选择的值来改变加减乘除的运算法则//设置结果输入框的值 switch(select){ case "+": result=first+second; break; case "-": result=first+second; break; case "*": result=first+second; break; case "/": result=first+second; break; default: alert("error");} 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' />
第三行第四行的 parseInt打错了 ,是Int不是lnt;
楼上说的也对 是int 不是Lnt 单词Parse是分析的意思,int代表整数型数值,合起来就是分析整数。在C和C++语言里,整型变量的定义用的就是int x,y,z;
你赋值写错了 不能写在default里,Switch的用法是变量select不为“加减乘除”才会执行default里的语句。而<body>里的是选择框,必为加减乘除之一,附正确代码,你看看。
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
//获取第一个输入框的值
var x = parseInt(document.getElementById("txt1").value);
//获取第二个输入框的值
var y = parseInt(document.getElementById("txt2").value);
//获取选择框的值
var z = document.getElementById("select").value;
//获取通过下拉框来选择的值来改变加减乘除的运算法则
switch(z){
case "+" :
//设置结果输入框的值
document.getElementById("fruit").value =x + y;
break;
case "-" :
document.getElementById("fruit").value = x - y;
break;
case "*" :
document.getElementById("fruit").value = x * y;
break;
case "/" :
document.getElementById("fruit").value = x / y;
break;
default :
document.write("输入有误,请重新输入!");
}
}
</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>
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题