2017年7月30日学习总结
一个小案例
简单计算器
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>demo</title>
<script>
function cal(){
var input = document.getElementById("calculate");
try{
input.value = eval(input.value);
}catch(e){
input.value = "输入错误!";
}
}
</script>
</head>
<body>
<h1>计算器</h1>
<input type="text" id="calculate" />
<input type="button" value="=" οnclick="cal();"/>
</body>
</html>
网页结果