angularjs弹出层

前端之家收集整理的这篇文章主要介绍了angularjs弹出层前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/**
*选择车牌号前缀
*
*/

$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

猜你在找的Angularjs相关文章