1

angularjsngHidengShowコードがいくつかあります。Chrome では問題なく動作しますが、IE では逆になります。コードは次のようになります。

 <section ng-controller="ctrl">
     <div class="details" ng-show="showDetails">
         Section 1
     </div>

     <div class="move-details" ng-hide="showDetails">
         Section 2
     </div>
 </section>

JS ファイル:

var ctrl = ['$scope', 'model', function($scope, model) {
     $scope.showDetails = true;
}];

のテキストはIESection 2ではなく表示されますが、Chrome では期待どおりに表示されます。Section 1Section 1

何か足りないだけですか?

4

1 に答える 1