這篇文章主要介紹JavaScript如何實現(xiàn)簡單的計算器,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)作為成都網(wǎng)站建設公司,專注網(wǎng)站建設公司、網(wǎng)站設計,有關成都企業(yè)網(wǎng)站建設方案、改版、費用等問題,行業(yè)涉及成都輕質隔墻板等多個領域,已為上千家企業(yè)服務,得到了客戶的尊重與認可。具體內(nèi)容如下
整個計算器實現(xiàn)由html文件、js文件和css樣式表三部分組成
整體效果:body里放倆div,一個大的包一個小的,小的放鍵盤,鍵盤div里放鍵盤。
html:
計算器 7 8 9 ÷ 4 5 6 × 1 2 3 - 0 c = +
css:
*{margin: 0;padding: 0} li{list-style: none} .bor{margin: 0 auto;width: 400px;height: 520px;border: 2px solid #000; margin-top: 50px;overflow: hidden;text-align: center;} .s_text{margin: 0 auto;width: 330px;height: 80px;margin-top: 15px; border: 2px solid #000000;font-size: 30px;padding-left: 20px;} .main{margin: 0 auto;width: 350px;height: 400px;margin-top: 15px;} .main ul{display: flex;height: 100%;justify-content: space-between;flex-wrap: wrap;} .main ul li{width: 80px;height: 80px;border: 1px solid #000000; text-align: center; line-height:80px;font-size: 36px;cursor: pointer ;} .main ul li:hover{background: #eeeeee;}
js:(將這段代碼寫在body最下面)
以上是“JavaScript如何實現(xiàn)簡單的計算器”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!