小程序
小游戏
企业微信
微信支付
扫描小程序码分享
遇到的问题:在弹出提示窗中的文字需要换行。代码如下非常简单,但是都不工作。
wx.showModal({
title: '单词秘籍',
content: "测试\n测试\\n测试\r\n测试<br>测试</br>",
showCancel: false,
confirmText: '知道啦!',
confirmColor: '#FEC635'
})
感谢。
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
\n 亲测有效
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<button bindtap="pop_up_butt">弹窗按钮</button>
<view wx:if="{{ifShow}}" class="view_ifshow_css">
<view class="center_view_css">
<view class="fisrt_view_css">提示</view>
<view class="scend_view_css">
<view class="cen_View_css" >
<text>你好!\t这是空格啊!\n我在下一行 \n 提示内容可执行换行方法</text>
</view>
<view class="butt_view_css">
<view class="butt1_css">取消</view>
<view class="butt2_css">确定</view>
明白了!感谢楼上兄弟们!
自己写个吧。这个弹框只能文字超出换行
换行的得自己写弹出框,小程序的文字多了会自动换行
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
\n 亲测有效
<button bindtap="pop_up_butt">弹窗按钮</button>
<view wx:if="{{ifShow}}" class="view_ifshow_css">
<view class="center_view_css">
<view class="fisrt_view_css">提示</view>
<view class="scend_view_css">
<view class="cen_View_css" >
<text>你好!\t这是空格啊!\n我在下一行 \n 提示内容可执行换行方法</text>
</view>
</view>
</view>
<view class="butt_view_css">
<view class="butt1_css">取消</view>
<view class="butt2_css">确定</view>
</view>
</view>
position: absolute;
display: flex;
flex-direction: column;
top: 30%;
margin-left: 10%;
width: 80%;
height: 500rpx;
border: 1rpx solid #e6e6e6;
background-color: #e6e6e6;
border-radius: 10rpx;
}
.center_view_css{
display: flex;
flex-direction: column;
}
.fisrt_view_css{
width: 100%;
text-align: center;
height: 100rpx;
padding-top: 40rpx;
}
.scend_view_css{
width: 100%;
height: 200rpx;
background-color: #ffffff;
}
.cen_View_css{
text-align: center;
height: 100%;
}
.butt_view_css{
width: 100%;
display: flex;
flex-direction: row;
height: 100rpx;
position: absolute;
bottom: 0;
}
.butt1_css{
width: 49%;
background-color: #f6f6f6;
color: red;
text-align: center;
line-height: 100rpx;
border: 1rpx solid #f6f6f6;
margin-right: 1%;
}
.butt2_css{
width: 49%;
background-color: #f6f6f6;
color: green;
text-align: center;
line-height: 100rpx;
border: 1rpx solid #f6f6f6;
margin-left: 1%;
}
ifShow:false,
},
pop_up_butt:function(){
var that=this;
console.log("弹窗页面")
that.setData({
ifShow: !that.data.ifShow,
})
},
明白了!感谢楼上兄弟们!
自己写个吧。这个弹框只能文字超出换行
换行的得自己写弹出框,小程序的文字多了会自动换行