2017-06-19 9 views
0

私は角度でモーダルを開き、ng-showを使っていくつかのdivを表示して隠すことができます。私はモーダルを閉じようとします。それはちょうどページから消えるが、htmlからそれ自身を取り除かない。私はブラウザのinspect要素でモーダルを見ることができます。これはページを抱きしめる。ページが応答しなくなり、ページ上の他のボタンやリンクをクリックできなくなります。私は多くのリンクを試みたが、何も動作していない。私は間違ったことをしていますか?ここで私を助けてください。 :(以下は、私は角1.5.6角を閉じるにはどうすればいいですか?

//my parent controller to call modal 
 

 
(function() { 
 
    var app = angular.module("formModule", ['ngRoute']); 
 
    app.controller("formController", function($scope,$http,$rootScope,$location,ModalService) { 
 
    $scope.BookNow= function() { 
 

 
     ModalService.showModal({ 
 
     templateUrl: "views/feature.html", 
 
     controller: "featureController" 
 
     }) 
 
     .then(function(modal) { 
 
      modal.element.modal(); 
 
      modal.close.then(function(result) { 
 
       console.log(result); 
 
      }); 
 
     }); 
 
    } 
 
}); 
 
})(); 
 

 
// my modal controller 
 
(function() { 
 
    var app = angular.module("featureModule", ['ngRoute','ngAnimate']); 
 
    app.controller("featureController", function($scope,$http,$rootScope,close,ModalService) { 
 
    $scope.fea=true; 
 
    
 
    $scope.close = function(result) { 
 
     ModalService.close(result,500); // close, but give 500ms for 
 
    } 
 

 
    $scope.calendar=function() { 
 
     $scope.fea=!$scope.fea; 
 
     $scope.cal=!$scope.cal; 
 
    } 
 
    }); 
 
})();
<div class="modal fade" id="modala" > 
 
    <div class="modal-dialog"> 
 
     <div class="modal-content"> 
 
     <div class="modal-header"> 
 
      <button type="button" class="close" ng-click="close(-1)" aria-hidden="true">&times;</button> 
 
     </div> 
 

 
     <div class="modal-body" ng-show="fea" > 
 
      <h2 class="modal-title" id="myModalLabel_3">Select Features</h2> 
 
     </div> 
 

 
     <div class="modal-body" ng-show="cal" > 
 
      <h2 class="modal-title" class="ss" id="myModalLabel_3">Select Date & Time</h2> 
 
     </div> 
 

 
     <div class="modal-footer"> 
 
      <div class="inner_read_more modal_btn_1"> 
 
       <a class="showSingle_1" ng-click="calendar()" >Next <i class="fa fa-arrow-circle-right" aria-hidden="true"></i></a> 
 
      </div> 
 
     </div> 
 
     </div> 
 
    </div> 
 
</div> 
 

答えて

0

angular.module('myApp', []) 
 
    .controller('myController', function($scope) { 
 
    $scope.close = function(){ 
 
\t alert('do something!'); 
 
    $('#myModal').modal('hide') 
 
\t } 
 
\t 
 
    });
<html ng-app="myApp"> 
 

 
<head> 
 
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.18/angular.js"></script> 
 
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> 
 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 
 
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> 
 
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 
 
    <script type="text/javascript" src="app.js"></script> 
 
    <title>Angular-Google-Charts Example</title> 
 
</head> 
 

 
<body> 
 

 
<div class="container"> 
 
    <h2>Modal Example</h2> 
 
    <!-- Trigger the modal with a button --> 
 
    <button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button> 
 

 
    <!-- Modal --> 
 
    <div class="modal fade" id="myModal" role="dialog"> 
 
    <div class="modal-dialog"> 
 
    
 
     <!-- Modal content--> 
 
     <div class="modal-content"> 
 
     <div class="modal-header"> 
 
      <button type="button" class="close" data-dismiss="modal">&times;</button> 
 
      <h4 class="modal-title">Modal Header</h4> 
 
     </div> 
 
     <div class="modal-body"> 
 
      <p>Some text in the modal.</p> 
 
     </div> 
 
     <div class="modal-footer" ng-controller="myController"> 
 
      <button type="button" class="btn btn-default" ng-click="close()">Close</button> 
 
     </div> 
 
     </div> 
 
     
 
    </div> 
 
    </div> 
 
    
 
</div> 
 

 
</body> 
 

 
</html>

はこのデモを見てください使用しています私のコードです。

関連する問題