微信小程序 富文本rich-text使用

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_42460570/article/details/83416107

 html

<view>
<rich-text  nodes="{{html}}"></rich-text>
</view>

 js

Page({
  data: {
    html:''
  },

  onLoad: function (options) {
    var that = this
    that.setData({
     html: '<p class="colorred">上九天揽月下五湖捉鳖</p>'
    })
  },
 
})

 css

.colorred{
  text-indent:2em
}

使用方法很简单 希望对大家有所帮助

猜你喜欢

转载自blog.csdn.net/weixin_42460570/article/details/83416107