showModal里的content为什么不支持换行\r \n <br>都无效
showModal里的content为什么不支持换行\r \n <br>都无效,有别的解决方法吗?
5 回复
亲测:\r\n 手机上面有效
wx.showModal({ title: '提示' , content: '第一行内容\r\n第二行内容\r\n第三行内容\r\n第四行内容' , success: function (res) { if (res.confirm) { console.log( '用户点击确定' ) } else if (res.cancel) { console.log( '用户点击取消' ) } } })1 |