IE不显示glyphicons

时间:2016-07-29 18:31:06

标签: html twitter-bootstrap internet-explorer glyphicons

我有以下代码:

class AttackNotFoundError < StandardError; end

呈现此html:

raise StandardError

在IE中,glyphicon-ok图标不会显示。 相反,我收到一条错误消息,指出我有一个不匹配的结束标记。 它抱怨的是这一行:

 if ( $value['customized'] == true) {
    echo("<td><span class='glyphicon glyphicon-ok' aria-hidden='true'></span>&nbsp;</td>");
} else{
     echo("<td>&nbsp;</td>");
} //end if

它突出显示了“”项目。 我看不出哪里出错了...... 如果有人想看一眼,我想我需要另一双眼睛。

感谢。

编辑1

现在,我改变了这个:

<table class="table table-striped">
   <thead>
      <tr>
         <th>PStatus</th>
         <th>Customized</th>
         <th>DS</th>
         <th>T Name</th>
         <th>Audit Date</th>
         <th>ObjectID</th>
      </tr>
   </thead>
   <tbody>
      <tr>
         <td><button type="button" class="btn btn-success"></button></td>
         <td><span class="glyphicon glyphicon-ok" aria-hidden="true"></span></td>
         <td>ll-ci1</td>
         <td><a href="location_details.php?loc=ll">ll-ci1</a></td>
         <td>July 29 2016 13:54:12</td>
         <td>579b994a3747106e60a089e1</td>
      </tr>
      <tr>
         <td><button type="button" class="btn btn-danger"></button></td>
         <td><span class="glyphicon glyphicon-ok" aria-hidden="true"></span></td>
         <td>lw1</td>
         <td><a href="location_details.php?loc=lw1">lw1</a></td>
         <td>July 29 2016 14:09:51</td>
         <td>579b9ab63747106e60a089e2</td>
      </tr>
   </tbody>
</table>

到此:

 <td><button type="button" class="btn btn-success"></button></td>

0 个答案:

没有答案