为什么 Internet Explorer 11 无法识别 HTML 中的条件注释?现在不支持了吗?

Why are conditional comments in HTML not recognized in Internet Explorer 11? Is it not supported now?

我想在不同的浏览器上显示不同的内容。我使用 Internet Explorer 11 和 Google Chrome 39。但是,在 Internet Explorer 和所有其他浏览器中显示 "Not Internet Explorer"。代码有问题吗?我看到以下代码是对相同 question 之一的回答,那么为什么它现在不起作用?

代码:

<!DOCTYPE html>
<html>
<body>

<!--[if (IE)]><p>This is Internet Explorer</p><![endif]-->

<!--[if !(IE)]><!--> Not Internet Explorer <!--<![endif]-->

</body>
</html>

Microsoft dropped conditional comments 在 Internet Explorer 10 版中。