[求助]怎么退出方法?
<html>
<head>
<title>在线计算器</title>
<script language=\"javascript\">
var sinput=\"\",clear=false,seval=\"\",sg=0;
function cstr(value,ze)
{
if (clear==true)
document.all.calc.input.value=\"\"
switch (ze)
{
case 1:
var dd=new String(seval);
if (dd.charAt(dd.length-1)==\"/\" && value==\"0\")
{
alert(\"被除数不能为0\");
break;
}
for(i=0;i<dd.length;i++)
{
if (dd.charAt(i)==\".\" && value==\".\"){
clear=false
return
}
}
sinput+=value;
seval+=value;
document.all.calc.input.value=sinput;
break;
case 2:
sinput=\"\";
seval+=value;
clear=true;
break;
case 3:
document.all.calc.input.value=\"\";sinput=\"\";seval=\"\";
break;
case 4:
document.all.calc.input.value=eval(seval);
seval=document.all.calc.input.value;
sinput=\"\";
clear=true;
break;
}
}
</script>
</head>
<body>
<center>
<h1>红君<h1>
<hr>
<br>
<form id=\"calc\">
<input type=\"text\" id=\"input\" size=\"16\">
<br>
<input type=\"button\" name=\"l1\" value=\"1\" onclick=\"cstr('1',1)\">
<input type=\"button\" name=\"l2\" value=\"2\" onclick=\"cstr('2',1)\">
<input type=\"button\" name=\"l3\" value=\"3\" onclick=\"cstr('3',1)\">
<input type=\"button\" name=\"s1\" value=\"+\" onclick=\"cstr('+',2)\">
<br>
<input type=\"button\" name=\"l4\" value=\"4\" onclick=\"cstr('4',1)\">
<input type=\"button\" name=\"l5\" value=\"5\" onclick=\"cstr('5',1)\">
<input type=\"button\" name=\"l6\" value=\"6\" onclick=\"cstr('6',1)\">
<input type=\"button\" name=\"s2\" value=\"-\" onclick=\"cstr('-',2)\">
<br>
<input type=\"button\" name=\"l7\" value=\"7\" onclick=\"cstr('7',1)\">
<input type=\"button\" name=\"l8\" value=\"8\" onclick=\"cstr('8',1)\">
<input type=\"button\" name=\"l9\" value=\"9\" onclick=\"cstr('9',1)\">
<input type=\"button\" name=\"l3\" value=\"*\" onclick=\"cstr('*',2)\">
<br>
<input type=\"button\" name=\"l0\" value=\"0\" onclick=\"cstr('0',1)\">
<input type=\"button\" name=\"l11\" value=\".\" onclick=\"cstr('.',1)\">
<input type=\"button\" name=\"c\" value=\"c\" onclick=\"cstr('c',3)\">
<input type=\"button\" name=\"s4\" value=\"/\" onclick=\"cstr('/',2)\">
<br>
<input type=\"button\" name=\"d\" value=\" = \" onclick=\"cstr('=',4)\">
</form>
</center>
<body>
</html>
<b>怎么退出方法呀,for 语句中用break只能退出for,而不能退出方法呀</B><BR>
<B>判断小数点位数的地方就要退出方法,可我不知道用什么命令呢</B>
[此贴子已经被作者于2005-12-31 13:28:45编辑过]