js
wx.showModal({
title: '提示',
content: '这是一个\r\n模态弹窗',
success: function(res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
}
});
@疯狂的迈步:\r\n
可以换行的,在开发者工具上显示不换行,但是在真实环境下是正常换行的。
实测可行。
转自:https://segmentfault.com/q/1010000009619659
文章信息
- 文章标题:【转】微信小程序wx.showModal内容如何才能自定义换行 - Keystion
- 文章链接:https://webclown.net/posts/微信小程序wx-showModal内容如何才能自定义换行.html
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。
- 转载请注明来自 Keystion !
markdown
[【转】微信小程序wx.showModal内容如何才能自定义换行 - Keystion](https://webclown.net/posts/微信小程序wx-showModal内容如何才能自定义换行.html)