如何仅在 IE8 中隐藏特定的 html 部分?

How can I hide a specific html section in IE8 only?

我想在我的 jsp 页面中仅针对 IE8 隐藏特定部分。我希望它显示在其他浏览器中,如 IE9、IE9+、Chrome、Safari、Firefox 等。尝试了以下代码片段:

    <!--[if IE8]>
       <li><a href="#/link">{{common}}</a></li>
    <![endif]-->

它在IE8中隐藏了元素,但在其他浏览器中也是如此!我希望它只在 IE8 中隐藏。如何实现?

<!--[if !IE 8]><!-->
<li><a href="#/link">{{common}}</a></li>
<!--<![endif]-->