wx.showModal({ title:‘提示‘, content:‘第一行内容\r\n第二行内容\r\n第三行内容\r\n第四行内容‘, success:function (res) { if (res.confirm) { console.log(‘用户点击确定‘) }else if (res.cancel) { console.log(‘用户点击取消‘) } } })
但是,如果你在微信开发者工具中发现并没有换行,不要惊讶,利用真机预览一下,就可以看到效果了。
2023-12-26 20:46:51
wx.showModal({ title:‘提示‘, content:‘第一行内容\r\n第二行内容\r\n第三行内容\r\n第四行内容‘, success:function (res) { if (res.confirm) { console.log(‘用户点击确定‘) }else if (res.cancel) { console.log(‘用户点击取消‘) } } })
但是,如果你在微信开发者工具中发现并没有换行,不要惊讶,利用真机预览一下,就可以看到效果了。