Ionic 경고 상자

1433 단어

    
        
        
        Alert
        
        
        
        angular.module('mySuperApp', ['ionic'])
        .controller('PopupCtrl',function($scope, $ionicPopup, $timeout) {
           //  alert( )  
           $scope.showAlert = function() {
             var alertPopup = $ionicPopup.alert({
               title: 'Don\'t eat that!',
               template: 'It might taste good'
             });
             alertPopup.then(function(res) {
               console.log('Thank you for not eating my delicious ice cream cone');
             });
           };
        });
      
    
    
      

      
        <input ng-model="data.wifi" type="text" placeholder="Password">
      
  


좋은 웹페이지 즐겨찾기