1. 程式人生 > >vue 網頁文字中帶#的話題顏色高亮

vue 網頁文字中帶#的話題顏色高亮

網頁中顯示文字時,帶#開始和結束的文字藍色高亮,就像微博話題一樣
效果如下

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
  }