Bootjrap模态弹出窗口使用angularjs无法打开和关闭

前端之家收集整理的这篇文章主要介绍了Bootjrap模态弹出窗口使用angularjs无法打开和关闭前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
您好我想使用angularjs controller.js代码打开和关闭bootstrap模型弹出窗口.

我的控制器代码

app.controller('RoleViewCtrlq',['$scope','$modalInstance','$modal',function ($scope,$modalInstance,$modal) {


    $scope.open = function () {
        debugger;
        var modalInstance = $modal.open({
            templateUrl: 'myModalContent.html',});


        $scope.ok = function () {
            $modalInstance.close();
        };

        $scope.cancel = function () {
            $modalInstance.dismiss('cancel');
        };


    }
}
]);

在这里,我创建了样本
https://plnkr.co/edit/xRhCR7qidlr24M8nAOA6?p=preview

它无法在controller.js代码中打开和关闭我的弹出窗口.可以任何人检查问题.??

<script type="text/ng-template" id="myModalContent.html">

从HTML中删除此脚本标记,然后重试.这是工作

原文链接:https://www.f2er.com/angularjs/143518.html

猜你在找的Angularjs相关文章