日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ionic 弹窗(alert, confirm)

發布時間:2025/6/15 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ionic 弹窗(alert, confirm) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

直接上代碼吧,不解釋了

控制器:

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("<p style='text-align:center;'>你說你怎么不是傻的?</p><p><input type='text'></p>", {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); }

?

官方文檔:http://ionicframework.com/docs/api/service/$ionicPopup/

《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀

總結

以上是生活随笔為你收集整理的ionic 弹窗(alert, confirm)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。