数式を演算させるには
		
			<html>
			<head>
			<title>Sample</title>
			<script type="text/javascript"><!--
			function calc(fObj)
			{
			 n = eval(fObj.num.value);
			 fObj.result.value = n;
			}
			// --></script>
			</head>
			<body>
			計算式の結果を表示します。<br><br>
			<form>
			 値:<input type="text" value="2*3+5" name="num"><br>
			結果:<input type="text" name="result"><br>
			<input type="button" value="計算する" onClick="calc(this.form)">
			</form>
			</body>
			</html>
		
		
		
			
 説明などは本書を参考にしてください。