小程序中的组件

组件文档连接:https://developers.weixin.qq.com/miniprogram/dev/component/text.html

小程序中有很多组件,我们只介绍个别组件,小程序文档比较完善,边用边查完全可以,但是我们需要知道有组件这个东西的存在,

<text></text>相当于html中得span标签,是行内元素,默认里面的文本不会换行,加上\n可以让换行,text中的内容长按默认不会被选中,加上 selecttable="{{true}}"

可以让text中的文本长按会选中

<text selectable="{{true}}">长按会选中</text>
<text selectable>长按会选中</text>
<text space='nbsp'>空格大小\n</text>
<text space='ensp'>空格大小\n</text>
<text space='nmsp'>空格大小\n</text>
<text>不解码    5  &gt;  3</text>
<text decode>解码    5  &gt;  3</text>

 text的space属性决定 text中文本空格的大小

.

猜你喜欢

转载自www.cnblogs.com/fqh123/p/12328177.html