最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

html+css實現(xiàn)一個好看的計算器實例代碼

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 15:33:23
文檔

html+css實現(xiàn)一個好看的計算器實例代碼

html+css實現(xiàn)一個好看的計算器實例代碼:最終效果如下圖-2,有bug:就是整數(shù)后點擊%號結(jié)果正確,如果小數(shù)后面點擊%的話結(jié)果就錯誤!其他都正常,求指點:input的value是string類型的,在JS中改如何正確處理下圖-1中的if部分。圖-1圖-2HTML代碼如下<body><p id="
推薦度:
導讀html+css實現(xiàn)一個好看的計算器實例代碼:最終效果如下圖-2,有bug:就是整數(shù)后點擊%號結(jié)果正確,如果小數(shù)后面點擊%的話結(jié)果就錯誤!其他都正常,求指點:input的value是string類型的,在JS中改如何正確處理下圖-1中的if部分。圖-1圖-2HTML代碼如下<body><p id="
最終效果如下圖-2,有bug:就是整數(shù)后點擊%號結(jié)果正確,如果小數(shù)后面點擊%的話結(jié)果就錯誤!其他都正常,求指點:input的value是string類型的,在JS中改如何正確處理下圖-1中的if部分??

圖-1

圖-2

HTML代碼如下

<body><p id="calculator">
 <p class="LOGO">
 <span class="name">簡單的計算器</span>
 <span class="verson">@walker</span>
 </p>
 <p id="shuRu">
 <!--screen輸入欄-->
 <p class="screen">
 <input type="text" id="screenName" name="screenName" class="screen">
 </p>
 </p>
 <p id="keys">
 <!-- j -->
 <!--第一排-->
 <input type="button" id="7" onclick="jsq(this.id)" value="7" class="buttons">
 <input type="button" id="8" onclick="jsq(this.id)" value="8" class="buttons">
 <input type="button" id="9" onclick="jsq(this.id)" value="9" class="buttons">
 <input type="button" id="Back" onclick="tuiGe()" value="Back" class="buttons">
 <input type="button" id="C" onclick="clearNum()" value="C" class="buttons" style="margin-right:0px">
 <!--第二排-->
 <input type="button" id="4" onclick="jsq(this.id)" value="4" class="buttons">
 <input type="button" id="5" onclick="jsq(this.id)" value="5" class="buttons">
 <input type="button" id="6" onclick="jsq(this.id)" value="6" class="buttons">
 <input type="button" id="*" onclick="jsq(this.id)" value="X" class="buttons">
 <input type="button" id="/" onclick="jsq(this.id)" value="/" class="buttons" style="margin-right:0px">
 <!--第三排-->
 <input type="button" id="1" onclick="jsq(this.id)" value="1" class="buttons">
 <input type="button" id="2" onclick="jsq(this.id)" value="2" class="buttons">
 <input type="button" id="3" onclick="jsq(this.id)" value="3" class="buttons">
 <input type="button" id="+" onclick="jsq(this.id)" value="+" class="buttons">
 <input type="button" id="-" onclick="jsq(this.id)" value="-" class="buttons" style="margin-right:0px">
 <!--第四排-->
 <input type="button" id="0" onclick="jsq(this.id)" value="0" class="buttons">
 <input type="button" id="00" onclick="jsq(this.id)" value="00" class="buttons">
 <input type="button" id="." onclick="jsq(this.id)" value="." class="buttons">
 <input type="button" id="%" onclick="jsq(this.id)" value="%" class="buttons">
 <input type="button" id="eva" onclick="eva()" value="=" class="buttons" style="margin-right:0px">
 </p>
 <p class="footer">
 <span class="aside">歡迎使用JavaScript計算器</span>
 <span class="link">
 <a href="#" title="聲明" target="_blank">反饋</a>
 </span>
 </p></p></body>

CSS代碼如下:

<style> /*Basic reset*/*{
 margin:0;
 padding:0;
 box-sizing: border-box;
 font: 14px Arial,sans-serif;
}html{
 height:100%;
 background-color:lightslategrey;
}#calculator{
 margin: 15px auto;
 width:330px;
 height:400px;
 border: 1px solid lightgray;
 background-color:darkgrey;
 padding:15px;
}/*LOGO*/.LOGO{
 height:20px;

}.LOGO .name{
 float:left;
 line-height:30px;
}.LOGO .verson{
 float:right;
 line-height:30px;
}/*screen*/#shuRu{
 margin-top:15px;
}.screen{
 margin-top:5px;
 width:300px;
 height:40px;
 text-align: right;
 padding-right:10px;
 font-size:20px;
}#keys{
 border:1px solid lightgray;
 height:223px;
 margin-top:25px;
 padding:8px;
}#keys .last{
 margin-right:0px;
}.footer{
 margin-top:20px;
 height:20px;
}.footer .link{
 float:right;
}#keys .buttons{
 float:left;
 width: 42px;
 height: 36px;
 text-align:center;
 background-color:lightgray;
 margin: 0 17px 20px 0;
}
 </style>

javascript代碼如下:

<script>
 var num = 0; // 定義第一個輸入的數(shù)據(jù)
 function jsq(num) {
 //獲取當前輸入
	if(num=="%"){
	document.getElementById('screenName').value=Math.round(document.getElementById('screenName').value)/100;
	}else{
	document.getElementById('screenName').value += document.getElementById(num).value;
	}
 }
 function eva() {
 //計算輸入結(jié)果
 document.getElementById("screenName").value = eval(document.getElementById("screenName").value);
 }
 function clearNum() {
 //清0
 document.getElementById("screenName").value = null;
 document.getElementById("screenName").focus();
 }
 function tuiGe() {
 //退格
 var arr = document.getElementById("screenName");
 arr.value = arr.value.substring(0, arr.value.length - 1);
 }
 </script>

【相關(guān)推薦】

1. 免費html在線視頻教程

2. html開發(fā)手冊

3. php.cn原創(chuàng)html5視頻教程

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

html+css實現(xiàn)一個好看的計算器實例代碼

html+css實現(xiàn)一個好看的計算器實例代碼:最終效果如下圖-2,有bug:就是整數(shù)后點擊%號結(jié)果正確,如果小數(shù)后面點擊%的話結(jié)果就錯誤!其他都正常,求指點:input的value是string類型的,在JS中改如何正確處理下圖-1中的if部分。圖-1圖-2HTML代碼如下<body><p id="
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top