赞
踩
本文通过示例代码详细介绍了小程序模态框文字样式的修改,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
<button form-type='submit' disabled='{{disabled}}' class="submit_btn" bindtap="openConfirm" hover-class="button-hover">确认修改</button>
<!-- bindtap="openConfirm"按钮被按下去的样式 -->
css部分
/* 按钮被按下去的颜色 */
.button-hover{
background-color: #96d3ef;
}
js部分
openConfirm: function () { wx.showModal({ title: '提示', content: '确认修改为新密码', confirmText: "确认",//主操作按钮文字 cancelText: "取消",//辅助操作按钮文字 //showCancel: false,//不显示取消按钮 cancelColor: "#000000",//取消文字的颜色 confirmColor: '#2ea7e0', //确定文字的颜色 success: function (res) { console.log(res); if (res.confirm) { console.log('你点击了确认') } else if (res.cancel) { console.log('你点击了取消') } } }); },
拓展:
wx.showModal({
title: '提示',
content: "确认拨打111116吗",//提示内容
confirmColor: '#2EA7E0',//确定按钮的颜色
showCancel: false,//不显示取消按钮
success (res) {
if (res.confirm) {
console.log('用户点击确定按钮')
} else if (res.cancel) {
console.log('用户点击取消按钮')
}
}
})
showCancel: false
不显示取消按钮
confirmColor: '#2EA7E0',
确定按钮的颜色
content: 'cccccc',
提示内容文字
confirmText: "确认",
主操作按钮文字
cancelText: "取消",
辅助操作按钮文字
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。