1小程序文本要在 标签内;
2小程序 标签要有 selectable 属性。
例如:
<text selectable='true'>文本</text>
1
1
下面一个例子是,解决小程序富文本组件 WxParse 不能长按选择的问题。在 wxParsewxml 中修改:
意思是在wxParse源码文件下 的wxParse文件下的wxParsewxml
-为要修改的代码行
+为修改后的代码行
<template name="WxEmojiView">
<view class="WxEmojiView wxParse-inline" style="{{itemstyleStr}}">
<block wx:for="{{itemtextArray}}" wx:key="">
- <block class="{{itemtext == '\\n' 'wxParse-hide':''}}" wx:if="{{itemnode == 'text'}}">{{itemtext}}</block>
+ <block class="{{itemtext == '\\n' 'wxParse-hide':''}}" wx:if="{{itemnode == 'text'}}">
+ <text selectable="true">{{itemtext}}</text>
+ </block>
<block wx:elif="{{itemnode == 'element'}}">
<image class="wxEmoji" src="{{itembaseSrc}}{{itemtext}}" />
</block>
</view>
</template>
1
2
3
4
5
6
7
8
9
10
11
12
13
1
2
3
4
5
6
7
8
9
10
11
12
13
微信小程序selectable='true'无复制效果解决
<text selectable></text>或<text selectable='{{true}}'>
最近因为体验了微信小程序 “百万工具箱” 里面的正则表达式工具,感觉到手机端输入正则表达式中的特殊字符十分的繁琐(反人类)。思前想后,决定撸一个可以解决繁琐输入的文本框组件。
不多说,先上开源地址吧:
npm >
以上就是关于微信小程序电脑上复制文字不行吗全部的内容,包括:微信小程序电脑上复制文字不行吗、微信小程序 - 按钮文本框 “giao-text”、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)