微信小程序计算器

微信小程序计算器

index.wxml

<view class='screen'>{{result}}</view><view class='test-bg'><view class='btnGroup'><view class='item grey' bindtap='clickButton' id="{{C}}">AC</view><view class='item grey' bindtap='clickButton' id="{{addSub}}">+/-</view><view class='item grey' bindtap='clickButton' id="{{percent}}">%</view><view class='item brown' bindtap='clickButton' id="{{div}}">÷</view></view><view class='btnGroup'><view class='item black' bindtap='clickButton' id="{{id7}}">7</view><view class='item black' bindtap='clickButton' id="{{id8}}">8</view><view class='item black' bindtap='clickButton' id="{{id9}}">9</view><view class='item brown' bindtap='clickButton' id="{{mut}}">×</view></view><view class='btnGroup'><view class='item black' bindtap='clickButton' id="{{id4}}">4</view><view class='item black' bindtap='clickButton' id="{{id5}}">5</view><view class='item black' bindtap='clickButton' id="{{id6}}">6</view><view class='item brown' bindtap='clickButton' id="{{sub}}">-</view></view><view class='btnGroup'><view class='item black' bindtap='clickButton' id="{{id1}}">1</view><view class='item black' bindtap='clickButton' id="{{id2}}">2</view><view class='item black' bindtap='clickButton' id="{{id3}}">3</view><view class='item brown' bindtap='clickButton' id="{{add}}">+</view></view><view class='btnGroup'><view class='item0 black' bindtap='clickButton' id="{{id0}}">0</view><view class='item black' bindtap='clickButton' id="{{dot}}">.</view><view class='item brown' bindtap='clickButton' id="{{equ}}">=</view></view></view>

index.wxss

page {width: 100%;height: 100%;background-color: black;}.test-bg {position: fixed;bottom: 0;}.screen {position: fixed;color: #fbfbfb;font-size: 50px;bottom: 850rpx;text-align: right;width: 730rpx;word-wrap: break-word;}.btnGroup {display: flex;/*弹性显示结构*/flex-direction: row;/*横向显示*/}.item {width: 150rpx;height: 150rpx;line-height: 150rpx;border-radius: 100%;text-align: center;margin-right: 40rpx;margin-bottom: 8rpx;margin-left: 8rpx;}.brown {/* 前景色 */color: #000000;font-size: 50rpx;/* border: solid 1rpx #ffffff; *//* 背景色 */background-color: #a5a5a5;}.black {/* 前景色 */color: #fefefe;font-size: 65rpx;/* border: solid 1rpx #ffffff; *//* 背景色 */background: #333333;}.grey {/* 前景色 */color: #fbfbfb;font-size: 50rpx;/* 背景色 */background: #a5a5a5;}.item0 {width: 350rpx;line-height: 180rpx;border-radius: 175rpx;text-align: center;margin-right: 40rpx;}

index.js文件

Page({data: {C: 'C',addSub: 'addSub',add: '+',sub: '-',mut: '×',div: '÷',equ: '=',percent: '%',dot: '.',id0: '0',id1: '1',id2: '2',id3: '3',id4: '4',id5: '5',id6: '6',id7: '7',id8: '8',id9: '9',result: '0',valiBackOfArray: ['+', '-', '×', '÷', '.'],completeCalculate: false},// 计算结果calculate: function (str) {// 判断负数var isNagativeNum = false;if (str.charAt(0) == '-') {str = str.replace('-', '').replace('(', '').replace(')', '');isNagativeNum = true;}// 字符串解析var addArray = str.split('+');var sum = 0.0;for (var i = 0; i < addArray.length; i++) {if (addArray[i].indexOf('-') == -1) {if (addArray[i].indexOf('×') != -1 || addArray[i].indexOf('÷') != -1 || addArray[i].indexOf('%') != -1)sum += this.calculateMutDiv(addArray[i]);else sum += Number(addArray[i]);} else {var subArray = addArray[i].split('-');var subSum = 0;if (subArray[0].indexOf('×') != -1 || subArray[0].indexOf('÷') != -1 || subArray[0].indexOf('%') != -1) subSum = this.calculateMutDiv(subArray[0]);else subSum = Number(subArray[0]);for (var j = 1; j < subArray.length; j++) {if (subArray[i].indexOf('×') != -1 || subArray[i].indexOf('÷') != -1)subSum -= this.calculateMutDiv(subArray[j]);else subSum -= Number(subArray[j]);}sum += subSum;}}if (isNagativeNum) return (-sum).toString();else return sum.toString();},// 分块乘除运算calculateMutDiv: function (str) {var addArray = str.split('×');var sum = 1.0;for (var i = 0; i < addArray.length; i++) {if (addArray[i].indexOf('÷') == -1 && addArray[i].indexOf('%') == -1) {sum *= Number(addArray[i]);} else if (addArray[i].indexOf('%') == -1) {var subArray = addArray[i].split('÷');var subSum = Number(subArray[0]);for (var j = 1; j < subArray.length; j++) {subSum /= Number(subArray[j]);}sum *= subSum;} else {var subArray = addArray[i].split('%');var subSum = Number(subArray[0]);for (var j = 1; j < subArray.length; j++) {subSum %= Number(subArray[j]);}sum *= subSum;}}return sum;},// 运算符结尾isOperatorEnd: function (str) {for (var i = 0; i < this.data.valiBackOfArray.length; i++) {if (str.charAt(str.length - 1) == this.data.valiBackOfArray[i]) return true;}return false;},clickButton: function (event) {if (this.data.result == 0) {if (event.target.id == 'back' || event.target.id == 'C' || event.target.id == 'addSub' || event.target.id == '%' || event.target.id == '+' || event.target.id == '-' || event.target.id == '×' || event.target.id == '÷' || event.target.id == '=') return;this.setData({result: event.target.id});} else if (event.target.id == 'back') {this.setData({result: this.data.result.length == 1 ? '0' : this.data.result.substring(0, this.data.result.length - 1)});} else if (event.target.id == 'C') {this.setData({result: '0'});} else if (event.target.id == 'addSub') {var r = this.data.result;if (this.isOperatorEnd(r)) return;if (r.charAt(0) == '-') this.setData({result: r.replace('-', '').replace('(', '').replace(')', '')});else this.setData({result: '-(' + r + ')'});} else if (event.target.id == '%') {this.setData({result: this.data.result + event.target.id});} else if (event.target.id == '=') {if (this.isOperatorEnd(this.data.result)) return;this.setData({result: this.calculate(this.data.result)});this.setData({completeCalculate: true});} else {if (this.isOperatorEnd(this.data.result) && this.isOperatorEnd(event.target.id)) return;// 结果有小数点,到输入运算符前不能再输入小数点if (this.data.completeCalculate && this.data.result.indexOf('.') != -1 && event.target.id == '.') return;for (var i = 0; i < this.data.valiBackOfArray.length - 1; i++) {if (this.data.valiBackOfArray[i] == event.target.id) {this.setData({completeCalculate: false});break;}}this.setData({result: this.data.result + event.target.id});}}})

以上就是微信小程序计算器的源代码,如有导入问题,一定是没联网

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/21454.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

AI精选付费资料包【37GB】

课程介绍 一、人工智能论文合集 二、AI必读经典书籍 三、超详细人工智能学习大纲 四、机器学习基础算法教程 五、深度学习神经网络基础教程 六、计算机视觉实战项目 课程获取 资料&#xff1a;AI精选付费资料包&#xff08;37.4GB&#xff09;获取&#xff1a;扫码关注公z号…

esp8266阿里云上线(小程序控制)

此wechatproject已上传在页面最上方 由图可见&#xff0c;项目只有两个页面&#xff0c;一个是获取该产品下的设备信息列表&#xff0c;一个是某设备对应的详情控制页面&#xff0c;由于这个项目只利用esp8266板子上自带的led&#xff0c;功能简单&#xff0c;只需要控制开关即…

leetcode 575.分糖果

思路&#xff1a;开两个数组&#xff0c;一个用来存储非负数的糖果个数&#xff0c;一个用来存储负数的糖果个数&#xff0c;这两个数组都是状态数组&#xff0c;而不是计数数组 如果当前能够吃的种类大于现有的种类&#xff0c;现有的种类个数就是答案&#xff1b; 如果当前…

Update! 基于RockyLinux9.3离线安装Zabbix6.0

链接&#xff1a; Ansible离线部署 之 Zabbixhttp://mp.weixin.qq.com/s?__bizMzk0NTQ3OTk3MQ&mid2247487434&idx1&sn3128800a0219c5ebc5a3f89d2c8ccf50&chksmc3158786f4620e90afe440bb32fe68541191cebbabc2d2ef196f7300e84cde1e1b57383c521a&scene21#we…

YOLOv9改进策略 | Conv篇 | 利用YOLOv10提出的SCDown魔改YOLOv9进行下采样(附代码 + 结构图 + 添加教程)

一、本文介绍 本文给大家带来的改进机制是利用YOLOv10提出的SCDown魔改YOLOv9进行下采样,其是更高效的下采样。具体而言,其首先利用点卷积调整通道维度,然后利用深度卷积进行空间下采样。这将计算成本减少到和参数数量减少到。同时,这最大限度地保留了下采样过程中的信息,…

创新指南|提高人才回报率的重要举措和指标

员工是组织最大的投资&#xff0c;也是最深层的价值源泉。人才系统必须同时强调生产力和价值创造。让合适的人才担任合适的职位&#xff0c;并为员工提供成功所需的支持和机会&#xff0c;这是实现回报的关键。本文将介绍组织可以采取的五项行动&#xff0c;以最大化企业的人才…

postgresql常用命令#postgresql认证

PostgreSQL 是一个功能强大的开源关系数据库管理系统&#xff0c;提供了一系列命令行工具来管理和操作数据库。以下是一些常用的 PostgreSQL 命令&#xff0c;涵盖数据库和用户管理、数据操作以及查询和维护等方面。 #PostgreSQL培训 #postgresql认证 #postgreSQL考试 #PG考试…

汽车识别项目

窗口设计 这里的代码放在py文件最前面或者最后面都无所谓 # 创建主窗口 window tk.Tk() window.title("图像目标检测系统") window.geometry(1000x650) # 设置窗口大小# 创建背景画布并使用grid布局管理器 canvas_background tk.Canvas(window, width1000, height…

【Hive SQL 每日一题】统计各个商品今年销售额与去年销售额的增长率及排名变化

文章目录 测试数据需求说明需求实现分步解析 测试数据 -- 创建商品表 DROP TABLE IF EXISTS products; CREATE TABLE products (product_id INT,product_name STRING );INSERT INTO products VALUES (1, Product A), (2, Product B), (3, Product C), (4, Product D), (5, Pro…

英码科技推出鸿蒙边缘计算盒子:提升国产化水平,增强AI应用效能,保障数据安全

当前&#xff0c;随着国产化替代趋势的加强&#xff0c;鸿蒙系统Harmony OS也日趋成熟和完善&#xff0c;各行各业都在积极拥抱鸿蒙&#xff1b;那么&#xff0c;边缘计算要加快实现全面国产化&#xff0c;基于鸿蒙系统开发AI应用势在必行。 关于鸿蒙系统及其优势 鸿蒙系统是华…

Linux 问题定位查看日志文件常用命令

Linux 问题定位查看日志文件常用命令 查看日志文件的前100行中是否包含关键词&#xff1a; head -n 100 /var/log/file.log | grep "keyword"查看日志文件的最后100行中是否包含关键词&#xff1a; tail -n 100 /var/log/file.log | grep "keyword"使用l…

ROS2从入门到精通4-3:全局路径规划插件开发案例(以A*算法为例)

目录 0 专栏介绍1 路径规划插件的意义2 全局规划插件编写模板2.1 构造规划插件类2.2 注册并导出插件2.3 编译与使用插件 3 全局规划插件开发案例(A*算法)常见问题 0 专栏介绍 本专栏旨在通过对ROS2的系统学习&#xff0c;掌握ROS2底层基本分布式原理&#xff0c;并具有机器人建…

2023-2025年最值得选择的Java毕业设计选题大全:1000个热门选题推荐✅✅✅

&#x1f497;博主介绍&#xff1a;✌全网粉丝1W,CSDN作者、博客专家、全栈领域优质创作者&#xff0c;博客之星、平台优质作者、专注于Java、小程序技术领域和毕业项目实战✌&#x1f497; &#x1f31f;文末获取源码数据库&#x1f31f; 感兴趣的可以先收藏起来&#xff0c;还…

以字节为单位管理文件系统

《操作系统》书上说&#xff1a;文件系统是块设备&#xff0c;一般是4KB一块。本文尝试以字节为单位管理文件系统。 关键是空闲空间的管理。在传统的文件系统中&#xff0c;用的是bitmap&#xff0c;在新的方法中&#xff0c;用的是“双B树”。 空闲空间用一张两列多行的表来…

冥想第一千一百七十八天

1.周末&#xff0c;早上先骑着电车到绿谷公园拿了姐给的精油&#xff0c;40分钟到家。 2.早上带着媳妇吃了饭&#xff0c;等丈母娘和小侄子。一起去荥泽水乡特别的推荐。感受特别好玩。 3.晚上带着丈母娘和小侄子吃了饭&#xff0c;给送到中原福塔。回来都都12点了。 4.累的&am…

Windows键盘选定文本快捷键

快捷键作用Shift ↑向上选定一行Shift ↓向下选定一行Shift ←向左选定1个字符Shift →向右选定1个字符Shift Ctrl ↑选定内容扩展至段落首Shift Crtl ↓选定内容扩展至段落尾Shift Crtl ←选定内容扩展至单词首Shift Crtl →选定内容扩展至单词尾Shift Home选定内容扩…

JDK安装目录

1、bin 该路径下存放了各种工具命令&#xff0c;其中比较重要的有&#xff1a;javac和java javac&#xff1a;jdk提供的编译工具&#xff0c;我们可以通过这个工具&#xff0c;把当前路径下的 .java 文件编译成 .class 字节码文件java&#xff1a;jdk提供的一个工具&#xff0…

计算机视觉与模式识别实验1-4 图像的傅立叶变换

文章目录 &#x1f9e1;&#x1f9e1;实验流程&#x1f9e1;&#x1f9e1;1. 傅立叶变换1.a 绘制一个二值图像矩阵,并将其傅立叶函数可视化。1.b 利用傅立叶变换分析两幅图像的相关性&#xff0c;定位图像特征。读入图像‘text.png&#xff0c;抽取其中的字母‘a’ 2. 离散余弦…

2024年5月2日 Go生态洞察:Go 1.22中的安全随机性

&#x1f337;&#x1f341; 博主猫头虎&#xff08;&#x1f405;&#x1f43e;&#xff09;带您 Go to New World✨&#x1f341; &#x1f984; 博客首页——&#x1f405;&#x1f43e;猫头虎的博客&#x1f390; 专栏链接&#xff1a; &#x1f517; 精选专栏&#xff1a;…

JavaEE IO流(1)

1.什么是IO流 &#xff08;1&#xff09;input输入 Output输出 这两个的首字母就是IO的组成 &#xff08;2&#xff09;比如你的电脑可以通过网络上传文件和下载文件 这个上传文件就是Output 这个下载翁建就是input (3)这个输入和输出的标准是以CPU为参照物为基准的 其中通…