博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ionic 弹窗(alert, confirm)
阅读量:4967 次
发布时间:2019-06-12

本文共 2668 字,大约阅读时间需要 8 分钟。

直接上代码吧,不解释了

控制器:

angular.module('app.controllers', []).controller('categoryCtrl', ['$scope', '$http', '$stateParams','$ionicLoading','$ionicPopup',function ($scope, $http, $stateParams, $ionicLoading, $ionicPopup) {    window.$ionicPopup = $ionicPopup;    $scope.test     = function(){        alert('什么鬼??', function(){            alert('神经病啊!', function(){                confirm('你的傻的么?', function(){                    alert('看来是啊。');                }, function(){                    show("

你说你怎么不是傻的?

", {title:'你484傻的?', cancelText:'我承认了', okText:'我不是!', success:function(){ alert("唉哟,不错哦","好像有点道理wo~"); }}); }); }); }); }}])

 

common.js:

function show(the_template, params){    var the_title         = params.title || '';    var the_subtitle    = params.subtitle || '';    var timeout         = params.timeout;    var the_cancelText  = params.cancelText || '取消';    var the_okText       = params.okText || '确定';    var myPopup = window.$ionicPopup.show({        template: the_template,        title: the_title,        subTitle: the_subtitle,        buttons:[            {                text:the_cancelText,                onTap:function(){                    return false;                }            },            {                text:the_okText,                type:'button-positive',                onTap:function(){                    return true;                }            }        ]    });    myPopup.then(function(res) {        if(res) {            if(params.success) params.success(res);        } else {            if(params.error) params.error(res);        }    });    if(timeout){        window.setTimeout(function(){            myPopup.close();        }, timeout);    }}function alert(the_title, the_content, the_callback){    if(typeof(the_content)!='string'){        the_callback = the_content;        the_content  = the_title;        the_title     = '系统提示';    }    if(typeof(the_content)!='string'){        the_callback = the_content;        the_content  = the_title;        the_title     = '系统提示';    }    var alertPopup = window.$ionicPopup.alert({        title: the_title,        template: the_content,        okText: '确定'    });    alertPopup.then(function(res) {        if(the_callback) the_callback(res);    });}function confirm(the_content, mixed, mixed2){    var params = {};    if(typeof(mixed)=='function'){        params.success     = mixed;        params.error     = mixed2;    }else{        params             = mixed;     }    if(!params.title) params.title = '请确认?';    show(the_content, params);}

 

官方文档:

转载于:https://www.cnblogs.com/tujia/p/6209147.html

你可能感兴趣的文章
数字三角形
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>
JSP常用标签
查看>>
dashucoding记录2019.6.7
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>