微信小程序常见标签使用
一、view标签&text标签
view标签:
长按展示不同样式:
<view hover-class="classhover"></view>阻止冒泡:
<view hover-stop-propagation="true"></view>文档:https://developers.weixin.qq.com/miniprogram/dev/component/view.html
text标签:
长按使文字能被复制:
<text selectable></text>;对文本内容进行解码(例如识别
$nbsp;):<text decode></text>文档:https://developers.weixin.qq.com/miniprogram/dev/component/text.html
