在模态内打开模态 [英] Open modal inside a modal

查看:26
本文介绍了在模态内打开模态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个有角度的 ui 模式.其中有一个按钮.单击此按钮时,我想在 angular ui 中打开另一个模态.我该怎么做

I have a angular ui modal. In that there is a button.On clicking this button I want to open another modal in angular ui.how can i do this

 $scope.open = function () {
    var modalInstance = $modal.open({
        templateUrl: 'myModalContent.html',
        controller: ModalInstanceCtrl,

    })
};

myModalContent.html 包含一个单击按钮,我想打开另一个模态.<a class="btn btn-success" href="#" role="button" ng-click="openModal()">打开模态</a>

myModalContent.html contains a button on clicking which I want to open another modal. <a class="btn btn-success" href="#" role="button" ng-click="openModal()">Open modal</a>

我无法在单击按钮时打开模态

I am unable to open a modal on clicking the button

推荐答案

您可以轻松打开第二个模态

You can easily open a second modal

var modalInstanceSecond = $modal.open({
    templateUrl: 'mySecondModalContent.html',
    controller: 'ModalInstanceCtrl',
});

看看这个笨蛋:

http://plnkr.co/edit/vfWJogYvMFFL2XcvM0pJ?p=preview

这篇关于在模态内打开模态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆