微信小程序?qū)崿F(xiàn)簡單的計算器功能
更新時間:2021年07月19日 09:03:17 作者:聰明可愛小軒軒
這篇文章主要為大家詳細介紹了微信小程序?qū)崿F(xiàn)簡單的計算器功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了微信小程序?qū)崿F(xiàn)計算器功能的具體代碼,供大家參考,具體內(nèi)容如下
wxml
<view class='content'>
<input value='{{calculation}}'></input>
<view class='box'>
<button class='yellow-color'>退格</button>
<button class='yellow-color' bindtap='empty'>清屏</button>
<button class='yellow-color'>❤</button>
<button bindtap='add' data-text='+' class='yellow-color'>+</button>
</view>
<view class='box'>
<button bindtap='add' data-text='9'>9</button>
<button bindtap='add' data-text='8'>8</button>
<button bindtap='add' data-text='7'>7</button>
<button bindtap='add' class='yellow-color' data-text='-'>-</button>
</view>
<view class='box'>
<button bindtap='add' data-text='6'>6</button>
<button bindtap='add' data-text='5'>5</button>
<button bindtap='add' data-text='4'>4</button>
<button bindtap='add' class='yellow-color' data-text='*'>*</button>
</view>
<view class='box'>
<button bindtap='add' data-text='3'>3</button>
<button bindtap='add' data-text='2'>2</button>
<button bindtap='add' data-text='1'>1</button>
<button bindtap='add' data-text='/' class='yellow-color'>÷</button>
</view>
<view class='box'>
<button bindtap='add' data-text='0'>0</button>
<button bindtap='add' data-text='.'>.</button>
<button>歷史</button>
<button class='yellow-color' bindtap='res'>=</button>
</view>
</view>
wxss
input {
width: 95%;
height: 250rpx;
margin: 0 auto;
margin-bottom: 20rpx;
border-bottom: 1rpx solid #ccc;
}
.box {
display: flex;
}
button {
width: 20%;
height: 150rpx;
margin-bottom: 20rpx;
line-height: 150rpx;
background-color:rgb(0, 150, 250);
color: white;
}
.yellow-color {
background-color: rgb(247, 142, 24)
}
JS
//index.js
//獲取應用實例
const app = getApp()
Page({
data: {
calculation:"",
result:0,
character:[], // 運算符號
operand: [], // 數(shù)字
temp:false
},
// 輸入框輸入數(shù)據(jù)
add:function(e) {
let input = e.currentTarget.dataset.text;
var that = this;
if (input == '+' || input == '-' || input == '*' || input == '/') {
this.data.temp = false; // 用于記錄上一次是否是操作符
var item = 'character[' + this.data.character.length+ ']';
this.setData({
[item] :input
})
} else {
var item = 'operand['+this.data.operand.length+']';
if(that.data.temp) {
// 拿到前一個的值
var res = 'operand[' + (this.data.operand.length-1) + ']'
var ress= that.data.operand.length-1;
var xyz = that.data.operand[ress] * 10 + parseInt(input);
that.setData({
[res]:xyz
})
} else {
input = parseInt(input);
that.data.temp = true;
that.setData({
[item]: input
})
}
}
// 將所有的內(nèi)容放到顯示框中
this.setData({
calculation:this.data.calculation+input
})
},
// 計算答案
res:function() {
console.log(this.data.character.length);
console.log(this.data.operand.length)
var character_len = this.data.character.length ;
var operand_len = this.data.operand.length;
console.log(operand_len - character_len)
if(operand_len - character_len == 1) {
this.data.result = this.data.operand[0];
console.log("初始值"+this.data.result);
for(var i=0;i<character_len;i++) {
if(this.data.character[i] == '+') {
this.data.result = this.data.result + this.data.operand[i + 1];
}
if (this.data.character[i] == '-') {
this.data.result = this.data.result - this.data.operand[i + 1];
}
if (this.data.character[i] == '*') {
this.data.result = this.data.result * this.data.operand[i + 1];
}
if (this.data.character[i] == '/') {
this.data.result = this.data.result / this.data.operand[i + 1];
}
}
} else {
this.setData({
result:'輸入有誤,清空數(shù)據(jù),重新輸入'
})
}
this.setData({
calculation:this.data.result
})
},
// 清空屏幕
empty:function() {
this.setData({
calculation: "",
result: 0,
character: [], // 運算符號
operand: [], // 數(shù)字
temp: false
}
}
})
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
JS使用oumousemove和oumouseout動態(tài)改變圖片顯示的方法
這篇文章主要介紹了JS使用oumousemove和oumouseout動態(tài)改變圖片顯示的方法,涉及javascript鼠標事件及圖片操作技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-03-03
一個頁面元素appendchild追加到另一個頁面元素的問題
一般都是自己創(chuàng)建元素然后append到頁面的但是如果是頁面本身有的元素append到另一個頁面元素呢,很多的新手朋友對此問題比較好奇,本人也是如此啊,好了不多說,切入主題,感興趣的朋友可以了解下哦2013-01-01
新浪微博字數(shù)統(tǒng)計 textarea字數(shù)統(tǒng)計實現(xiàn)代碼
從新浪微博代碼里抄的,非常不錯,需要的朋友可以參考下。2011-08-08
淺談SpringMVC中post checkbox 多選框value的值(隱藏域方式)
下面小編就為大家分享一篇淺談SpringMVC中post checkbox 多選框value的值(隱藏域方式),具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-01-01

