AngularJS和Firefox之间不兼容

时间:2017-04-06 18:58:16

标签: angularjs firefox

我的表格没有出现在Firefox中。我看到Firefox与AngularJS存在兼容性问题,我该怎么办? 按照代码。

<table class="displayTagCss">
<thead>
    <th style="width: 50px;">&nbsp;</th>
    <th style="width: 50px;">Ordem</th>
    <th>Alertas</th>
    <th>Proposição</th>
    <th>Situação</th>
    <th style="width: 50px;">&nbsp;</th>
</thead>
<tbody>
    <tr ng-repeat="proposicao in gruposSentencas['<c:out value='${grupo.idSentencaDePesquisa}' />']">
        <td style="text-align: center;">
            <img alt="Subir" title="Subir" ng-show="!$first" src="<html:rewrite page='/imagens/botao_subir.gif' />" ng-click="subirProposicao('<c:out value='${grupo.idSentencaDePesquisa}' />', $index)" />
            <img alt="Descer" title="Descer" ng-show="!$last" src="<html:rewrite page='/imagens/botao_descer.gif' />" ng-click="descerProposicao('<c:out value='${grupo.idSentencaDePesquisa}' />', $index)" />
        </td>
        <td style="text-align: center;">{{$index+1 }}</td>
        <td>
            <div class="hover" ng-if="(proposicao.alertas.length > 0) || proposicao.haPendencia">
                <img src="<html:rewrite page='/imagens/gfx/warning.png'/>" />
                <div class="appear">
                    <ul>
                        <li class="alerta_proposicao" ng-repeat="alerta in proposicao.alertas">{{ alerta }}</li>
                        <li class="alerta_proposicao" ng-if="proposicao.haPendencia"><span>Observações de fase: </span>{{proposicao.textoObservacao}}</li>
                    </ul>
                </div>
            </div>
        </td>
        <td>{{ proposicao.identificadorDaProposicao }}</td>
        <td>{{ proposicao.situacao }}</td>
        <td style="text-align: center;"><img src="<html:rewrite page='/imagens/chk_off.png' />" ng-click="removerProposicao('<c:out value='${grupo.idSentencaDePesquisa}' />', $index)" alt="Excluir" title="Excluir" /></td>
    </tr>
</tbody>
</table>

'thead'有效,但'tbody'没有出现在Firefox中。

0 个答案:

没有答案