VueJS字符串反转:String.reverse()
Posted 君临
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VueJS字符串反转:String.reverse()相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue 测试实例 - 菜鸟教程(runoob.com)</title> <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script> </head> <body> <div id="app"> <p>{{ message }}</p> <button v-on:click="reverseMessage">反转字符串</button> </div> <script> new Vue({ el: \'#app\', data: { message: \'Runoob!\' }, methods: { reverseMessage: function () { this.message = this.message.split(\'\').reverse().join(\'\') } } }) </script> </body> </html>
效果:
以上是关于VueJS字符串反转:String.reverse()的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode10.Array and String —Reverse String 字符数组逆置