1.
function SetExp(str){
//设置文本框内显示的字符串
var _rst = "";
document.getElementsByName('result')[0];
_rst.value = _rst.value + str;
document.Nform.result.value=document.Nform.result.value+str;
}
2.
function Cal(){
if(document.Nform.result.value!=''){
document.Nform.result.value = window.eval
(document.Nform.result.value);
}
}
3.
function Clear(){
//清空文本框内的输入字符串
document.Nform.result.value = "";
}
4.
对于数字0-9,运算符号+-*/来说
<input type="button" value="1" onClick="SetExp('1')">
5.
<input type="button" value="=" onClick="Cal()">
6.
<input type="button" value="C" onClick="Clear()">