HTML实现简单计算器附详细思路_XHTML教程-查字典教程网
HTML实现简单计算器附详细思路
HTML实现简单计算器附详细思路
发布时间:2017-01-07 来源:查字典编辑
摘要:Calculatorvarnumresult;varstr;functiononclicknum(nums){str=document.ge...

<!DOCTYPE html>

<html>

<meta name="content-type" content="text/html; charset=UTF-8">

<head>

<title>Calculator</title>

<>

<script type="text/javascript">

var numresult;

var str;

function onclicknum(nums) {

str = document.getElementById("nummessege");

str.value = str.value + nums;

}

function onclickclear() {

str = document.getElementById("nummessege");

str.value = "";

}

function onclickresult() {

str = document.getElementById("nummessege");

numresult = eval(str.value);

str.value = numresult;

}

</script>

</head>

<body bgcolor="affff" >

<>

<table border="1" align="center" bgColor="#bbff77"

>

<tr>

<td colspan="4">

<input type="text" id="nummessege"

/>

</td>

</tr>

<tr>

<td>

<input type="button" value="1" id="1"

>

</td>

<td>

<input type="button" value="2" id="2"

>

</td>

<td>

<input type="button" value="3" id="3"

>

</td>

<td>

<input type="button" value="+" id="add"

>

</td>

</tr>

<tr>

<td>

<input type="button" value="4" id="4"

>

</td>

<td>

<input type="button" value="5" id="5"

>

</td>

<td>

<input type="button" value="6" id="6"

>

</td>

<td>

<input type="button" value="-" id="sub"

>

</td>

</tr>

<tr>

<td>

<input type="button" value="7" id="7"

>

</td>

<td>

<input type="button" value="8" id="8"

>

</td>

<td>

<input type="button" value="9" id="9"

>

</td>

<td>

<input type="button" value="*" id="mul"

>

</td>

</tr>

<tr>

<td colspan="2">

<input type="button" value="0" id="0"

>

</td>

<td>

<input type="button" value="." id="point"

>

</td>

<td>

<input type="button" value="/" id="division"

onclick="onclicknum('/')"

>

</td>

</tr>

<tr>

<td colspan="2">

<input type="button" value="Del" id="clear"

onclick="onclickclear()"

/>

</td>

<td colspan="2">

<input type="button" value="=" id="result"

onclick="onclickresult()"

/>

</td>

</tr>

</table>

</body>

</html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新XHTML学习
    热门XHTML学习
    网页设计子分类