javascript简单计算器代码附eval方法说明

发布时间:2019-07-31编辑:脚本学堂
有关javascript计算器的实现代码,一段简单的javacript计算器代码,在javascript计算器的代码中,eval函数用于计算某个字符串中数值,此函数重要性可见一斑。

javascript简单计算器

如图:

js计算器

js计算器代码
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>javascript简单计算器_www.jb200.com</title>
<script type="text/javascript">
<!--Hide The Script from old browsers --
function compute(obj) //单击等于"="按钮调用的函数;
{obj.expr.value = eval(obj.expr.value)} //用JS得eval()方法计算name为expr中的公式
var one = '1'
var two = '2'
var three = '3'
var four = '4'
var five = '5'
var six = '6'
var seven = '7'
var eight = '8'
var nine = '9'
var zero = '0'
var plus = '+'
var minus = '-'
var multiply = '*'
var divide = '/'
var decimal = '.'
function enter(obj,string) //type="button"的调用函数
{obj.expr.value += string} //在表单expr的值后面连上相应的字符
//--End Hiding Here -->
</script>
</head>
<body>
<form name="calc">
<table border="1">
<td colspan="4"><input type="text" name="expr" size="30" action="compute(this.form)" /></td>
<tr>
<td><input type="button" value=" 7 " onclick="enter(this.form,seven)" /></td>
<td><input type="button" value=" 8 " onclick="enter(this.form,eight)" /></td>
<td><input type="button" value=" 9 " onclick="enter(this.form,nine)" /></td>
<td><input type="button" value=" / " onclick="enter(this.form,divide)" /></td>
</tr>
<tr>
<td><input type="button" value=" 4 " onclick="enter(this.form,four)" /></td>
<td><input type="button" value=" 5 " onclick="enter(this.form,five)" /></td>
<td><input type="button" value=" 6 " onclick="enter(this.form,six)" /></td>
<td><input type="button" value=" * " onclick="enter(this.form,multiply)" /></td>
</tr>
<tr>
<td><input type="button" value=" 1 " onclick="enter(this.form,one)" /></td>
<td><input type="button" value=" 2 " onclick="enter(this.form,two)" /></td>
<td><input type="button" value=" 3 " onclick="enter(this.form,three)" /></td>
<td><input type="button" value=" - " onclick="enter(this.form,minus)" /></td>
</tr>
<tr>
<td colspan="2"><input type="button" value=" 0 " onclick="enter(this.form,zero)" /></td>
<td><input type="button" value=" . " onclick="enter(this.form,decimal)" /></td>
<td><input type="button" value=" + " onclick="enter(this.form,plus)" /></td>
</tr>
<tr>
<td colspan="2"><input type="button" value=" = " onclick="compute(this.form)" /></td>
<td colspan="2"><input type="button" value="AC" onclick="form.reset()"/></td>
</tr>
</table>
</form>
</body>
</html>

说明:

JavaScript eval() 函数
定义和用法
eval() 函数可计算某个字符串,并执行其中的的 JavaScript 代码。

返回值
通过计算 string 得到的值(如果有的话)。

说明
该方法只接受原始字符串作为参数,如果 string 参数不是原始字符串,那么该方法将不作任何改变地返回。因此请不要为 eval() 函数传递 String 对象来作为参数。

如果试图覆盖 eval 属性或把 eval() 方法赋予另一个属性,并通过该属性调用它,则 ECMAScript 实现允许抛出一个 EvalError 异常。

抛出
如果参数中没有合法的表达式和语句,则抛出 SyntaxError 异常。

如果非法调用 eval(),则抛出 EvalError 异常。

如果传递给 eval() 的 Javascript 代码生成了一个异常,eval() 将把该异常传递给调用者。

提示和注释
提示:虽然 eval() 的功能非常强大,但在实际使用中用到它的情况并不多。


更多教程,请关注:javascript计算器专题教程