1***@qq.com
1***@qq.com
  • 发布:2023-03-09 10:26
  • 更新:2025-03-04 09:55
  • 阅读:1121

大佬们uniapp textarea添加话题使话题的颜色改变这个功能怎么写啊,求指教谢谢?

分类:uni-app

如题我想做个textarea添加话题的功能像这种图片

2023-03-09 10:26 负责人:无 分享
已邀请:
chriswoww

chriswoww - no.1

<template>  
  <view style="position: relative">  
    <textarea  
      style="  
        position: absolute;  
        color: transparent;  
        caret-color: #000;  
        font-size: 30rpx;  
        line-height: 30rpx;  
        width: 100%;  
      "  
      placeholder-style="color:#707070;font-size: 30rpx;"  
      maxlength="50"  
      :value="inputValue"  
      @input="onInput"  
      :placeholder="placeholder"  
    />  
    <view  
      style="  
        width: 100%;  
        white-space: pre-line;  
        overflow-wrap: break-word;  
        font-size: 30rpx;  
        position: relative;  
        line-height: 30rpx;  
      "  
      v-html="highlightedText"  
    ></view>  
  </view>  
</template>  

<script>  
export default {  
  name: 'customTextArea',  
  props: {  
    value: {  
      type: String,  
      default: '',  
    },  
    placeholder: {  
      type: String,  
      default: '请输入',  
    },  
  },  
  data() {  
    return {  
      inputValue: '',  
      highlightedText: '',  
    }  
  },  
  mounted() {  
    this.$nextTick(() => {  
      this.inputValue = this.value  
      this.highlightText()  
    })  
  },  
  methods: {  
    onInput(event) {  
      this.inputValue = event.detail.value  
      this.highlightText()  
      this.$emit('input', this.inputValue)  
    },  
    // 这里假设你要高亮的话题是以 # 开头的  
    highlightText() {  
      const regex = /#[\u4e00-\u9fa5a-zA-Z0-9_]+/g  
      this.highlightedText = this.inputValue.replace(regex, (match) => {  
        return `<span style="color: #fbbe3c;">${match}</span>`  
      })  
    },  
  },  
}  
</script>  

<style>  
/* 你可以在这里添加样式 */  
</style>  
1***@qq.com

1***@qq.com (作者) - 是心跳吗

没有人做个做个功能吗

  • 李白丨

    大佬你实现了吗

    2025-01-08 10:53

1***@qq.com

1***@qq.com (作者) - 是心跳吗

夕阳西下,断肠人在天涯

SpongeBob

SpongeBob

用户官网提供的editor编辑器
地址: https://uniapp.dcloud.net.cn/component/editor.html
编辑器操作地址: https://uniapp.dcloud.net.cn/api/media/editor-context.html#editorcontext-format

SpongeBob

SpongeBob

效果像这样子:

  • 8***@qq.com

    这个代码可以发我一份吗?大佬

    2024-12-04 11:20

SpongeBob

SpongeBob

这里是html和js

  • 苦瓜颜

    这个页面的完整代码能提供一下吗?刚刚好要写的功能差不多,不会用那个富文本

    2024-06-04 16:41

  • SpongeBob

    回复 苦瓜颜: 可以,需要怎么发给你?

    2024-07-16 13:57

  • 1***@qq.com

    回复 SpongeBob: hello 能也给我分享一下嘛!

    2024-08-08 14:14

  • 1***@qq.com

    回复 SpongeBob: hello,我现在也要实现一个和你差不多功能的评论组件,能分享给我嘛~

    2024-09-06 17:21

  • 1***@qq.com

    回复 SpongeBob: hello 能也给我分享一下嘛?

    2024-10-28 19:50

  • 1***@qq.com

    回复 SpongeBob: 大佬大佬,能给我分享一下吗?

    2024-10-30 16:21

  • p***@163.com

    大佬 能分享一下不?

    2024-11-26 15:58

  • 8***@qq.com

    回复 苦瓜颜: 这个能分享一下吗

    2024-12-04 11:22

  • 1***@163.com

    完整的代码能否发一份,感谢

    2024-12-31 10:55

  • 李白丨

    回复 苦瓜颜: 你实现了吗

    2025-01-08 10:59

  • 李白丨

    回复 8***@qq.com: 请问你只实现了吗

    2025-01-08 10:59

  • SpongeBob

    不好意思,各位,太久没看了,先前这份代码以为硬盘损坏丢失了

    2025-03-13 17:36

  • SpongeBob

    其实思路也很简单,就是根据编辑器返回的内容修改样式就可以了,只是没有原生App的功能那么强大

    2025-03-13 17:42

要回复问题请先登录注册