angularjsngHide
とngShow
コードがいくつかあります。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 1
Section 1
何か足りないだけですか?