/** *选择车牌号前缀 * */ $ionicModal.fromTemplateUrl('templates/order/modal/orderCity.html',{ scope:$scope,//增加$scope animation:'animatedbounceInUp'//增加弹出动画样式 }).then(function(modal){ $scope.CityNumberModal=modal; }); //显示方法 $scope.showCity=function(){ $scope.CityNumberModal.show(); } //隐藏方法 $scope.closetoolNumber=function(city){ $scope.CityNumberModal.hide(); }原文链接:https://www.f2er.com/angularjs/149642.html