如何在Internet Explorer中显示null?

时间:2013-04-23 19:59:02

标签: php javascript html null echo

以下是我的php页面的一部分,其中我根据天气显示变量或不具有值。这在Firefox和Chrome中运行良好,但在Internet Explorer中,当变量没有值而不是像FF或Chrome那样只是空白时,会显示“null”。有办法解决这个问题吗?

<tr>
 <td>Track</td>
 <td><?php echo $trackResult. '&acute;<br/>';
    if($trackResultOne != NULL){ echo $trackResultOne."&acute;<br/>";}
    if($trackResultTwo != NULL){ echo $trackResultTwo."&acute;";}
    ?></td>
</tr>

1 个答案:

答案 0 :(得分:-1)

不幸的是,你需要使用IF的ELSE部分来检索空白(''),IE会自动将真实的空值转换为字符串'null'。

此致

巴勃罗