<html>
<head>
<title>编程练习</title>
<script type="text/javascript">
function count(){
var a=document.getElementById("txt1").value;
var b=document.getElementById("txt2").value;
var c=document.getElementById("select").value;
var result=document.getElementById("friut");
switch(c){
case "+":
result=a+b;
break;
case"-":
result=a-b;
break;
case"*":
result=a*b;
break;
case="/":
result=a/b;
break;
}
}
</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="=">
<input type="text" id="fruit">
</body>
</html>
为什么按了”=“不出结果呢?
一,<input type="button" value="=">这里加个onclick="count()"
二,var result=document.getElementById("friut");加个.value
三,变量a,b用parseInt()的方法吧字符串转化为数字,就可以用了
在按钮那一行加入 onclick=“”里面放你需要调用的函数
没有加 鼠标单击事件