码迷,mamicode.com
首页 > Web开发 > 详细

VueJS字符串反转:String.reverse()

时间:2017-06-28 18:45:00      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:script   rip   blog   tps   boot   pre   -o   css   reverse   

HTML

<!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()

标签:script   rip   blog   tps   boot   pre   -o   css   reverse   

原文地址:http://www.cnblogs.com/boonya/p/7090475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!