vue 实现文本域还剩多少字符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 实现文本域还剩多少字符相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="http://cn.vuejs.org/js/vue.js"></script> </head> <body> <div id="app"> <template v-for="(item,index) in msg"> <textarea :maxlength ="checkLength(index)" v-model="item.name" cols="30" rows="10" ></textarea> <span v-if="index == 1">还可以输入{{10- result[index]}}字符</span> </template> </div> <script> var vm = new Vue({ el:‘#app‘, data:{ msg:[ {"name":""}, {"name":""}, {"name":""} ] }, methods:{ checkLength:function(index){ return index <= 1 ? 10: ‘‘ } }, computed:{ result:function(){ var l = 0; var arr = []; var reg = /^[\s]$/g; for(var i=0; i<this.msg.length; i++){ l = (this.msg[i].name).toString().replace(/\s/g,"").length; arr.push(l); } return arr; } } }) </script> </body> </html>
以上是关于vue 实现文本域还剩多少字符的主要内容,如果未能解决你的问题,请参考以下文章
文本域输入汉字 第二个文本域立即显示汉字的获取首个字母 如何用JS实现