为什么我的计算器在其他计算机上显得奇怪?

时间:2015-08-21 13:45:06

标签: javascript css html5 calculator calc

为什么我的计算器在其他计算机上看起来很奇怪?是否有任何JS,HTML5或CSS代码使它在所有计算机上看起来都一样?为什么会这样?一直试图解决这个问题几个小时,没有找到任何有用的教程或StackOverFlow帖子。

我的代码:

<!DOCTYPE html>
<html>
<head>
<title>Calc</title>
<style>
.calc {border: groove 6px; margin-left: 530px; margin-right: 530px; padding-top: 10px; padding-bottom: 10px; height: 255px;}

input {text-align: center;height: 30px;}

.results {padding-bottom: 7px;}

.top {float: left; padding-left: 20px;}

.numbers {float: left; padding-left: 20px; padding-top: 15px;}

.symbols {float: right; margin-top: -40px; padding-right: 15px;}

button {width: 30px; height: 30px;}
</style>
<script>
function myFunction(clickedId) {
    document.calc.result.value+=clickedId;
}
function Clear() {
    document.calc.result.value="";
}
function compute() {
 try{
 var inp=eval(document.calc.result.value);
 document.calc.result.value=inp;
 }
 catch(err){
  document.calc.result.value="error";
 }
}
function doMath() {
 var inputNum1=document.calc.result.value;
 var result = Math.sqrt(inputNum1);
 document.calc.result.value = result;
}
function myMultiply() {
 var x = parseInt (document.calc.result.value, 10);
 var y = x*x;
 alert(x + " times " + x + " equals " + y);
 return false;
}
function compute() {
 try{
    var inp=eval(document.calc.result.value);
    if(document.calc.result.value==inp)
    inp=inp*inp
    document.calc.result.value=inp;
 }
 catch(err){
  document.calc.result.value="error";
 }
}
</script>
</head>
<body>
<div class="calc">
<center>
<div class="results">
    <form name="calc">
    <input type="text" name="result" readonly>
    </form>
</div>
<table>
<div class="top">
    <button type="button" id="CLEAR" onclick="Clear()"><font color="#CC0000">C</font></button> <!--Izdzēst rakstīto-->
    <button type="button" id="3.141592653589793" onclick="myFunction(this.id)">π</button> <!--Skaitlis 3.14...-->
    <button type="button" id="6.283185307179586" onclick="myFunction(this.id)">τ</button> <!--Skaitlis 6.28...-->
</div>
<br>
<div class="numbers">
    <button type="button" id="1" onclick="myFunction(this.id)">1</button> <!--Skaitlis 1-->
    <button type="button" id="2" onclick="myFunction(this.id)">2</button> <!--Skaitlis 2-->
    <button type="button" id="3" onclick="myFunction(this.id)">3</button> <!--Skaitlis 3-->
<br>
    <button type="button" id="4" onclick="myFunction(this.id)">4</button> <!--Skaitlis 4-->
    <button type="button" id="5" onclick="myFunction(this.id)">5</button> <!--Skaitlis 5-->
    <button type="button" id="6" onclick="myFunction(this.id)">6</button> <!--Skaitlis 6-->
<br>
    <button type="button" id="7" onclick="myFunction(this.id)">7</button> <!--Skaitlis 7-->
    <button type="button" id="8" onclick="myFunction(this.id)">8</button> <!--Skaitlis 8-->
    <button type="button" id="9" onclick="myFunction(this.id)">9</button> <!--Skaitlis 9-->
<br>
    <button type="button" id="0" onclick="myFunction(this.id)">0</button> <!--Skaitlis 0-->
</div>
<br>
<div class="symbols">
    <button type="button" id="ANS" onclick="compute()">=</button> <!--Vienādības zīme-->
	<br>
	<button type="button" id="+" onclick="myFunction(this.id)">+</button> <!--Plusa zīme-->
	<br>
    <button type="button" id="-" onclick="myFunction(this.id)">-</button> <!--Mīnusa zīme-->
	<br>
    <button type="button" id="*" onclick="myFunction(this.id)">x</button> <!--Reizināšanas zīme-->
	<br>
    <button type="button" id="/" onclick="myFunction(this.id)">÷</button> <!--Dalīšanas zīme-->
	<br>
	<button type="button" id="SQRT" onclick="doMath()">√</button> <!--Kvadrātsakne-->
	<br>
	<button type="button" id="imp*inp" onclick="compute()"><sub>2</sub></button> <!--Kvadrāts-->
</div>
<br>
</table>
</center>
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

不是真正的答案,但我建议您使代码更清晰,更易于维护,因此更容易调试,并且首先不容易出现类似这些错误。例如,不要为每个数字按钮设置相同的onclick属性,请尝试类似

的内容
<button class="number">1</button>
<button class="number">2</button>
<button class="number">3</button>
<!-- etc -->
<button class="number">0</button>

并在你的JS中:

var numbers = document.getElementsByClassName("number");
for(var i = 0; i < numbers.length; i++) {
    numbers[i].onclick = function() {
        // put whatever you want to happen when you click it here
        doWhatever();
    }
}

许多其他HTML都可以通过类似方式进行改进。