很久前写的一个计算器
很久前自己写的一个计算器,是在百度知道上回答问题时写的,
偶然看到,感觉有点意思,就发了出来
Html代码
<!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>计算器</title>
<style type="text/css">
input {
width: 50px;
margin: 5px
}
</style>
<script type="text/javascript" defer="defer">
function add(s){
var t=document.getElementById("text");
switch(s){
case '+':
case '-':
case '*':
case '/':
if(t.value==''){
t.value='0'+'\n'+s;
}else{
t.value+='\n'+s;
}
break;
case '=':
t.value=eval(t.value.replace(/<[^>]*>|\n/igm,''))
break;
case 'c':
t.value='0';
break;
case 'ce':
tt.value=t.value.substr(0,t.value.length-1)
break;
default:
if(t.value=='0'){
t.value=s;
}else{
if(t.value.substr(t.value.length-1,1).match(/[\+\-\*\/]$/igm)){
t.value+='\n'+s;
}else{
t.value+=''+s;
}
}
}
}
</script>
</head>
<body>
<div>&nbs
相关新闻>>
- 发表评论
-
- 最新评论 更多>>