0
アンカータグを無効にするために角度2 ngClassを使用しています。これはgoogle chromeでは機能していますが、IE 11では機能しません。角度2 ng-classがIE 11で機能していません
<div id ="fileList" class="panel-body collapse in">
<div class="table-responsive">
<table id="uploadInvoice" class="table table-bordered table-condensed">
<thead class ="thead">
<tr>
<th class="gridHeader sortable order1" style="display:none;">File ID</th>
<th class="gridHeader sortable">File Name</th>
<th class="gridHeader sortable">Upload Status</th>
<th class="gridHeader sortable">Uploaded Date</th>
<th class="gridHeader sortable">Updated Date</th>
<th class="gridHeader sortable">Uploaded BY</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let file of fileList">
<td style="display:none;">{{file.id}}</td>
<td><a href="#fileList" data-toggle="collapse" [ngClass]="{'disabled':file.fileStatus == 'VALIDATING'}"
(click) ="getValidationSummary(file.id,file.fileName)">{{file.fileName}}</a></td>
<td>{{file.fileStatus}}</td>
<td>{{file.createdDate}}</td>
<td>{{file.modifiedDate}}</td>
<td>{{file.createdBy}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
私はちょうど同様の状況に遭遇しました。これを解決する運がありましたか? – atsituab
これを解決するには2通りの方法があります。 uisng * NgIfまたは[disabled]を使用する – Developer