慕粉1543407295
2017-08-25 13:25
<!DOCTYPE html>
<html>
<head>
<title> 事件</title>
<script type="text/javascript">
function count(){
var one=document.getElementById("txt1").value;//获取第一个输入框的值
var two=document.getElementById("txt2").value;//获取第二个输入框的值
var select=document.getElememtById("select").value;//获取选择框的值
var result=" ";
switch(select){
case "+":
result=parseInt(one)+parseInt(two);
break;
case "-":
result=parseFloat(one)-parseFloat(two);
break;
case "*":
result=parseFloat(one)*parseFloat(two);
break;
default:
result=parseFloat(one)/parseFloat(two);
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>
var one=document.getElementById("txt1").value;//获取第一个输入框的值
通过文本框获取的内容是字符串,比如你输入'1'+'1'='11'而不是等于2
所以先要将字符串转成数字;
使用parseInt()函数可解析一个字符串,并返回一个整数。(只能进行整数运算 你输入 1.5 +2.1 它还是给你当成 1 + 2 进行运算)
使用parseFloat()函数可解析一个字符串,并返回一个浮点数。
var select=document.getElememtById("select").value;//获取选择框的值
看懂这个"Elememt"了吗? 写错了,应该是"Element"。单词写错了! 改了之后就可以运行了!
获取选择框的值错了用下面这两行代码
var index=document.getElementById("select").selectedIndex;//获取当前选择项的索引.
var select = document.getElementById("select").options[index].value;//获取当前选择项的值.
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题