0

I want to restrict my web application not to be supported in one certain browser alone. Browser may be anything and any version.

4

1 回答 1

1

为什么你不想支持特定的浏览器? 这确实不是一个好的设计,因为您不应该强迫用户。

在您的情况下,您只能选择使用 检测浏览器navigator.userAgent,这不好。

如果您不想支持旧版本是 IE 或 IE 本身,那么请使用条件注释

例如:

<!--[if lt IE 9]>
<p>Sorry! You are running IE 8 or an earlier version of IE. <br>Please use IE 9 or greater</p>
<style>
     //Apply your own styles
</style>
<![endif]-->

然后根据特征检测尝试编写至少支持所有最新浏览器的代码,更改设计。

于 2013-10-14T07:54:37.663 回答