哪个大虾帮忙看下为什么得不出答案
<html>
<head>
<script language="JavaScript">
<!--
//定义全局变量
var n1='',n2='';
var item1_flag=true;
var opr_type='+';
function SetVal(item){
document.Cal.OutText.value+=item;
if(item1_flag)
n1+=item;
else
n2+=item;
}
function SetOpt(opr){
document.Cal.OutText.value+=opr;
item1_flag=false;
opr_type=opr;
}
function Clear(){
document.Cal.OutText.value="";
item1_flag=true;
opr_type='+';
n1='';
n2='';
}
function Computer(obj){
var Result;
if((n1!='')&&(n2!='')){
if((eval(n2)==0)&&(opr_type=='/')){
alert("除数不能为0!");
Clear();
return;
}
else{
Result=eval(obj.OutText.value);
document.Cal.OutText.value+='=';
document.Cal.OutText.value+=Result;
}
}
}
-->
</script>
</head>
<body>
<p align=center>
<form name="Cal">
<input type="text" name="OutText" value=""><br><br>
<input type="button" value="0" onClick="SetVal('0')">
<input type="button" value="1" onClick="SetVal('1')">
<input type="button" value="2" onClick="SetVal('2')">
<input type="button" value="3" onClick="SetVal('3')"><br><br>
<input type="button" value="4" onClick="SetVal('4')">
<input type="button" value="5" onClick="SetVal('5')">
<input type="button" value="6" onClick="SetVal('6')">
<input type="button" value="7" onClick="SetVal('7')"><br><br>
<input type="button" value="8" onClick="SetVal('8')">
<input type="button" value="9" onClick="SetVal('9')">
<input type="button" value="+" onClick="SetVal('+')">
<input type="button" value="-" onClick="SetVal('-')"><br><br>
<input type="button" value="*" onClick="SetVal('*')">
<input type="button" value="/" onClick="SetVal('/')">
<input type="button" value="CE" onClick="Clear()">
<input type="button" value="=" onClick="Computer(this.form)">
</form>
</p>
</body>
</html>
[此贴子已经被作者于2007-4-19 19:15:53编辑过]