使用html+css+js實現簡易計算器

来源:https://www.cnblogs.com/tynam/archive/2018/12/16/10128128.html
-Advertisement-
Play Games

使用html+css+js實現簡易計算器, 效果圖如下: html代碼如下: CSS代碼如下: JS代碼如下: ...


使用html+css+js實現簡易計算器,

效果圖如下:

 

html代碼如下:

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 6     <meta http-equiv="X-UA-Compatible" content="ie=edge">
 7     <title>calculator</title>
 8     <link rel="stylesheet" type="text/css" href="style.css">
 9     <script type="text/javascript" src="contain.js"></script>
10     <title>Document</title>
11 </head>
12 <body>
13    <div class="calculator">
14     <form name="calculator">
15         <input type="text" id="display" value="">
16             <br>
17         <input type="button" class="btn number txt" value="TYNAM">
18         <input type="button" id="clear" class="btn number" value="AC" onclick="cleardisplay();">
19         <input type="button" class="btn number" value="<-" onclick="del();">
20         <input type="button" class="btn operator" value="/" onclick="get(this.value);">
21             <br>
22         <input type="button" class="btn number" value="7" onclick="get(this.value);">
23         <input type="button" class="btn number" value="8" onclick="get(this.value);">
24         <input type="button" class="btn number" value="9" onclick="get(this.value);">
25         <input type="button" class="btn operator" value="*" onclick="get(this.value);">
26             <br>
27         <input type="button" class="btn number" value="4" onclick="get(this.value);">
28         <input type="button" class="btn number" value="5" onclick="get(this.value);">
29         <input type="button" class="btn number" value="6" onclick="get(this.value);">
30         <input type="button" class="btn operator" value="+" onclick="get(this.value);">
31             <br>
32         <input type="button" class="btn number" value="1" onclick="get(this.value);">
33         <input type="button" class="btn number" value="2" onclick="get(this.value);">
34         <input type="button" class="btn number" value="3" onclick="get(this.value);">
35         <input type="button" class="btn operator" value="-" onclick="get(this.value);">
36             <br>
37         <input type="button" class="btn number" value="0" onclick="get(this.value);">
38         <input type="button" class="btn number" value="." onclick="get(this.value);">
39         <input type="button" class="btn operator equal" value="=" onclick="calculates();">
40     </form>
41    </div> 
42 </body>
43 </html>

 

CSS代碼如下:

 1 * {
 2     border: none;
 3     font-family: 'Open Sans', sans-serif;
 4     margin: 0;
 5     padding: 0;
 6 }
 7 
 8 .calculator {
 9     background-color: #fff;
10     height: 600px;
11     margin: 50px auto;
12     width: 600px;
13 }
14 
15 form {
16     background-color: rgb(75, 70, 71);
17     padding: 5px 1px auto;    
18     width: 245px;
19 }
20 .btn {
21     outline: none;
22     cursor: pointer;
23     font-size: 20px;
24     height: 45px;
25     margin: 5px 0 5px 10px;
26     width: 45px;
27    
28 }
29 .btn:first-child {
30     margin: 5px 0 5px 10px;
31 }
32 
33 #display {
34     outline: none;
35     background-color: #dededc;
36     color: rgb(75, 70, 71);
37     font-size: 40px;
38     height: 47px;
39     text-align: right;
40     width: 224px;
41     margin: 10px 10px auto;
42 }
43 .number {
44     background-color: rgb(143, 140, 140);
45     color: #dededc;
46 }
47 
48 .operator {
49     background-color: rgb(239, 141, 49);
50     color: #ffffff;
51 }
52 
53 .equal{
54     width: 105px;
55 }
56 
57 .txt{
58     font-size:12px;
59     background: none;
60 }

 

 

JS代碼如下:

/* display clear */ 
function cleardisplay() {
    document.getElementById("display").value = "";
}

/* del */
function del() {
    var numb = "";
    numb = document.getElementById("display").value;
    for(i=0;i<numb.length;i++)
    {
        document.getElementById("display").value = numb.substring(0,numb.length-1);
        if(numb == '')
        {
            document.getElementById("display").value = '';
        }
    }
} 

/* recebe os valores */
function get(value) {
    document.getElementById("display").value += value; 
} 

/* calcula */
function calculates() {
    var result = 0;
    result = document.getElementById("display").value;
    document.getElementById("display").value = "";
    document.getElementById("display").value = eval(result);
};

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 推薦一個我個人的Oracle資料庫學習網站,比較系統性的整理,會持續更新的網站。網址: Oracle基礎教程: http://www.oraclejsq.com/article/010100110.html PL/SQL教程: http://www.oraclejsq.com/plsql/01020 ...
  • 索引註意事項 (1)最左首碼原則 如果查詢的時候,查詢條件精確匹配索引的左邊連續一列或幾列,則可以命中索引。 (2)避免where 子句中對欄位施加函數,如to_date(create_time)>xxxxxx,這樣會造成無法命中索引。 (3)在使用InnoDB 時,使用與業務無關的自增主鍵作為主鍵... ...
  • 為了簡化複雜SQL語句編寫以及提高資料庫安全性,MySQL資料庫提供了視圖特性。視圖是一張虛擬表,不以資料庫中儲存的數據值形式存在。在開發中,開發者往往只對某些特定數據和所負責的特定任務感興趣,只需要看到這一部分數據即可。這時候就可以用到視圖來完成。 ...
  • 從零學習Fluter(八):Flutter的四種運行模式--Debug、Release、Profile和test以及命名規範 ...
  • 文章鏈接: "https://mp.weixin.qq.com/s/H63Sn03xV0JoINXB4SWWKA" 眾所周知,在android 6.0之後,如果應用程式需要危險許可權,則用戶必須明確嚮應用授予該許可權。今天推薦一個許可權相關的庫EasyPermissions。 以相機許可權來看,先看下不使用 ...
  • 前端之形變 一.形變 二.動畫animation 三.表格 四.多行文本垂直居中 ...
  • 前兩天看到某個網站上的輸入框有個小特效:文字逐個顯示,並且到字元串最大長度後,逐個消失,然後重新迴圈顯示消失,迴圈顯示字元串數組。我對這個小特效有點好奇,於是今天自己嘗試用jquery寫一個簡單的小demo,終於把效果整齣來了。首先看一下實現後的效果: 接下來上代碼。 這個方法完全是個人想出來的,如 ...
  • ## 1函數遞歸函數遞歸 自己調用自己 ## 2變數 全局變數 1在函數外部定義的變數 2在任何地方可以使用 局部變數 1函數體內部通過var定義的變數 2局部變數只能在所在函數內使用 3當局部變數與全局變數同名時,用自己的 變數不加var 預設是隱形的全局變數 但是書寫的時候一定要加 瀏覽器 js ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...