浏览器兼容

今天在看网站源码的时候,以下方式控制浏览器兼容,不错!以前习惯在一个css样式,或者js上使用,下面的方式也是不错的方式

 

<!--[if IE 9]>
<meta name="application-name" content="" />
<meta name="msapplication-tooltip" content="" />
<meta name="msapplication-starturl" content=" " />
<link rel="shortcut icon" type="image/x-icon" href=" " />
<![endif]--> <!--[if lte IE 7]>
<script>
__ieOld__ = true;
try { document.execCommand('BackgroundImageCache', false, true); } catch (e) {}
</script>
<![endif]-->
<!--[if IE]>
<script>
if (navigator.userAgent.indexOf('Windows NT 5.1') >= 0) { __ieOld__ = true; }
</script>
<![endif]-->

 

 

 

 

 

 

 

你可能感兴趣的:(html)