jquery – 单击背景时如何关闭离子弹出窗口

前端之家收集整理的这篇文章主要介绍了jquery – 单击背景时如何关闭离子弹出窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我点击离子背景时,如何让我的弹出窗口关闭.这是我的代码.我是离子和角度js的新手.下面的代码允许我打开一个弹出窗口,当我点击按钮时,我弹出了弹出窗口.我想这样做,因为当我点击背景它应该让我到主页.
$scope.showPopup = function() {
   $scope.data = {}
 // An elaborate,custom popup
 var myPopup = $ionicPopup.show({

 title: 'Social Media Services',scope: $scope,buttons: [
 { 
 type :'ion-social-facebook positive button-large',onTap: function(e) {
     // $cordovaSpinnerDialog.show("aaa","aaaa");
        window.open('https://www.facebook.com/BinDawood.Co','_system','location=yes');
     }
   },{ type :'ion-social-twitter calm',"aaaa");
        window.open('https://twitter.com/BinDawoodco',{  type :'ion-social-pinterest assertive',"aaaa");
         window.open('http://pinterest.com/bindawoodco',]
 });
 myPopup.then(function(res) {
  console.log('Tapped!',res);
 });

 };

如何修改我的代码才能实现这一目标?

解决方法

如果你想关闭背景的ui,那么使用modal而不是popup.
希望这能解决你的问题.

http://ionicframework.com/docs/api/service/ $ionicModal /

猜你在找的jQuery相关文章