溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

javascript制作計(jì)算器

發(fā)布時(shí)間:2020-06-12 09:52:22 來(lái)源:億速云 閱讀:150 作者:Leah 欄目:web開(kāi)發(fā)

這篇文章主要為大家詳細(xì)介紹了javascript制作計(jì)算器的方法,文章中的示例代碼非常詳細(xì),若有興趣可以學(xué)習(xí)參考,閑言少敘直接上代碼:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JS計(jì)算器</title>

<style>
body,p,input{
    margin: 0;
    padding: 0;
}
.wp{
    width: 500px;
    height: 500px;
    border:10px solid black;
    margin: 0 auto;
    margin-top: 100px;
}
#text{
    width: 480px;
    height: 90px;
    border-bottom: 10px solid black;
    font-size: 50px;
    line-height: 100px;
    text-align: left;
    padding-left: 20px;
    background: #ffffff;
}
input{
    width: 125px;
    height: 100px;
    background: #c0c0c0;
    float: left;
    font-size: 40px;
    line-height: 100px;
    text-align: center;
}
</style>

<script>
window.onload = function () {
    var oText = document.getElementById('text');

    var aBtn = document.getElementsByTagName('input');
    var aText = oText.value

    for(i=0;i<aBtn.length;i++){
        aBtn[i].onclick = conunt;
    };
    function conunt(value){
        if(this.value == 'C'){
            oText.value ='';
        }else if(this.value == '='){
           oText.value = eval(oText.value)

        }else if(this.value == 'x'){
            oText.value -= oText.value.substring( oText.value.length);
        }
        else{
            oText.value += this.value;
        };

    };
};

</script>

</head>
<body>
<div class="wp">
<input type="text" id="text">
<input type="button" id="btn1" value="C" >
<input type="button" id="btn2" value="/">
<input type="button" id="btn3" value="*">
<input type="button" id="btn4" value="-">
<input type="button" id="btn5" value="1">
<input type="button" id="btn6" value="2">
<input type="button" id="btn7" value="3">
<input type="button" id="btn8" value="+">
<input type="button" id="btn9" value="4">
<input type="button" id="btn10" value="5">
<input type="button" id="btn11" value="6">
<input type="button" id="btn12" value=".">
<input type="button" id="btn13" value="7">
<input type="button" id="btn14" value="8">
<input type="button" id="btn15" value="9">
<input type="button" id="btn16" value="=">
</div>
</body>
</html>

以上就是javascript制作計(jì)算器的詳細(xì)內(nèi)容,代碼示例簡(jiǎn)單明了,如果在日常工作遇到此問(wèn)題。通過(guò)這篇文章,希望你能有所收獲,更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI