小编给大家分享一下vue.js怎么实现计算器功能,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
效果如图所示:是一个十分简单的计算器,包含了加减乘除,不是用原生js写的,而是用vue.js写的
html:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div id="app"> <input type="text" v-model="n1" /> <select v-model="opt"> <option value="+">+</option> <option value="-">-</option> <option value="*">*</option> <option value="/">/</option> </select> <input type="text" v-model="n2" /> <input type="button" value="=" @click="calc" /> <input type="text" v-model="result" /> </div> </body> </html>
js代码:
<script src="js/vue.js"></script> <script> var vm=new Vue({ el:"#app", data:{ n1:0, n2:0, result:0, opt:"+" }, methods:{ //定义计算器算数的方法 calc(){ switch(this.opt){ case "+": this.result=parseInt(this.n1)+parseInt(this.n2) //return this.result break; case "-": this.result=parseInt(this.n1)-parseInt(this.n2) //return this.result break; case "*": this.result=parseInt(this.n1)*parseInt(this.n2) //return this.result break; case "/": this.result=parseInt(this.n1)/parseInt(this.n2) //return this.result break; } } } }) </script>
不过在最后我使用了一个swith循环来设置这个,还有另一种方法,代码量更少:
可以把里面的循环改成:
//这是投机取巧,不要经常用 正是开发中,尽量少用 var codeStr='parseInt(this.n1)'+this.opt+'parseInt(this.n2)' this.result=eval(codeStr)
以上是“vue.js怎么实现计算器功能”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。