一個簡單的jQuery計算器實現(xiàn)了連續(xù)計算功能
來源:易賢網(wǎng) 閱讀:3349 次 日期:2014-07-25 19:04:57
溫馨提示:易賢網(wǎng)小編為您整理了“一個簡單的jQuery計算器實現(xiàn)了連續(xù)計算功能”,方便廣大網(wǎng)友查閱!

一個簡單的jQuery計算器,只是實現(xiàn)了一個連續(xù)計算的功能

<!DOCTYPE html>

<html>

<head>

<meta charset="utf8"/>

<title>Javascript計算器</title>

</head>

<body>

<table>

<tr>

<td colspan="4"><input id="show" value="0"/></td>

</tr>

<tr>

<td><button onclick="number(this)" value="7">7</button></td>

<td><button onclick="number(this)" value="8">8</button></td>

<td><button onclick="number(this)" value="9">9</button></td>

<td><button onclick="calsym(this)" value="+">+</button></td>

</tr>

<tr>

<td><button onclick="number(this)" value="4">4</button></td>

<td><button onclick="number(this)" value="5">5</button></td>

<td><button onclick="number(this)" value="6">6</button></td>

<td><button onclick="calsym(this)" value="-">-</button></td>

</tr>

<tr>

<td><button onclick="number(this)" value="1">1</button></td>

<td><button onclick="number(this)" value="2">2</button></td>

<td><button onclick="number(this)" value="3">3</button></td>

<td><button onclick="calsym(this)" value="*">*</button></td>

</tr>

<tr>

<td><button onclick="number(this)" value="0">0</button></td>

<td><button onclick="calsym(this)" value="=">=</button></td>

<td><button onclick="clearCal()" value="c">c</button></td>

<td><button onclick="calsym(this)" value="/">/</button></td>

</tr>

</table>

</body>

<script type="text/javascript" src="jquery-1.9.1.js"></script>

<script type="text/javascript" src="jquery-1.9.1.min.js"></script>

<script type="text/javascript">

var num0 = null;

var num1 = null;

var symble = null;

var lastclick = null;

var symarr = new Array(); //符號集合

symarr[0] = '+';

symarr[1] = '/';

symarr[2] = '*';

symarr[3] = '-';

symarr[4] = '=';

function number(n){

var numnow = $('#show');

var _exist=$.inArray(lastclick,symarr); //判斷上次點擊是否為符號

if (numnow.val() == 0 || _exist != -1) {//若顯示框為0 或者上次點擊為符號,則重新記錄顯示框

numnow.val($(n).val());

}else{

numnow.val(parseInt(numnow.val()) * 10 +parseInt($(n).val()));

}

lastclick = $(n).val(); // 更新上次點擊

}

function calsym(cs){ //符號點擊事件響應

var numnow = $('#show');

var _exist=$.inArray(lastclick,symarr);

if (num0 == null && symble == null) { //初始狀態(tài)

num0 = numnow.val();

symble = $(cs).val();

}else if(num0 != null && num1 == null && _exist !=-1){ // 連續(xù)點操作符的處理,及第一次點擊操作符處理

symble = $(cs).val();

}else{ //正常計算狀態(tài)

num1 = numnow.val();

var result = calculate(symble,num0,num1);

symble = $(cs).val(); //上行及本行:先計算之前的運算符及結(jié)果,再更新運算符為本次點擊

num0 = result;

numnow.val(result);

num1 = null;

}

lastclick = $(cs).val(); // 更新上次點擊

}

function clearCal(){ //清空函數(shù)

$('#show').val('0');

num0 = null;

num1 = null;

symble = null;

lastclick = null;

}

function calculate(sym,m,n){ //計算并返回結(jié)果

var res = null;

m = parseInt(m);

n = parseInt(n);

switch(sym){

case '+':

res = m+n;

break;

case '-':

res = m-n;

break;

case '*':

res = m*n;

break;

case '/':

if (n == 0) {

alert("false");

break;

}

res = m/n;

break;

default:

break;

}

return res;

}

</script>

</html>

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡編程

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)