1

网页中显示文字时,带#开始和结束的文字蓝色高亮,就像微博话题一样
效果如下

clipboard.png

html

<span v-html="parseComments('#吃货节#有什么好吃的')"></span> // 方法里面可以是变量,这里只是个演示

js

parseComments (value) {
     var exp
     exp = /(#|#)((?!#).)*(#|#)/g // 这里中文#和英文#都会识别
     value = value.replace(/<[^>]*?>(.*?)/gi, '').replace(/(.*?)<\/[^>]*?>/gi, '').replace(exp, (item) => {
       let newVal = '<span class="text-blue">' + item + '</span>'
       return newVal
    })
     return value
  }


流年朝朝
128 声望12 粉丝

但行好事,莫问前程