链接在弹出窗口下打开

时间:2016-10-18 09:56:57

标签: javascript angularjs ionic-framework

任何人都可以告诉我如何解决这个问题。我想显示一个带链接的弹出窗口,当我点击链接时,弹出窗口下的标签打开,我无法完全看到它。 screenshot

以下是代码:

onCreateView()

1 个答案:

答案 0 :(得分:0)

<a ui-sref="regulation"> instead of this use below

<a ng-click="go()">something</a>

$scope.go=funtion(){
   $modalInstance.close() //close your modal 
   $state.go("Your state");
}