ionic开发——中文确认弹出框

来源:互联网 发布:5钻淘宝店铺多少钱 编辑:程序博客网 时间:2024/06/08 02:15
$ionicPopup.confirm({template:"<div style='text-align:center;font-family: 微软雅黑;'>确认解除绑定吗?</div>",buttons: [{ text: "<div class='myPopup'>取消</div>",       onTap:function(e){}},{text: '<div class="myPopup">确定</div>',onTap:function(e){                   }}]});

0 0