免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1486 | 回复: 0
打印 上一主题 下一主题

跨浏览器 if IE [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-23 02:10 |只看该作者 |倒序浏览

1、Css if hack条件语法
< !--[if IE]> Only IE <![endif]-->
仅所有的WIN系统自带IE可识别
< !--[if IE 5.0]> Only IE 5.0 <![endif]-->
只有IE5.0可以识别
< !--[if gt IE 5.0]> Only IE 5.0+ <![endif]-->
IE5.0包换IE5.5都可以识别
< !--[if lt IE 6]> Only IE 6- <![endif]-->
仅IE6可识别
< !--[if gte IE 6]> Only IE 6/+ <![endif]-->
IE6以及IE6以下的IE5.x都可识别

<!--[if lte IE 7]> Only IE 7/- <![endif]-->
仅IE7可识别
< !--[if gte IE 7]> Only IE 7/+ <![endif]-->
IE7以及IE7以下的IE6、IE5.x都可识别

<!--[if IE 8]> Only IE 8/- <![endif]-->
仅IE8可识别

<!--[if IE 9]> Only IE 9/- <![endif]-->
仅IE9可识别

:在 if  后加 lt gte有不同效果 (参加其它参数同理)

  • <!–[if IE 8]> = IE8 仅IE8可识别
  • <!–[if lt IE 8]> = IE7或更低版本
  • <!–[if gte IE 8]> = 高于或者等于IE8版本

    2、DIV+CSS实例
    CSS实例一:
    让IE6-IE8显示不同的内容,DIV CSS代码如下:

    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>DIV IF条件实例</title>
    </head>
    <body>
    你正在使用:
    <!--[if IE 7]> 
    <h2>IE7</h2>
    <![endif]-->
    <!--[if IE 6]> 
    <h2>IE6</h2>
    <![endif]-->
    <!--[if IE 8]> 
    <h2>IE8</h2>
    <![endif]-->

    <!--[if IE 9]> 
    <h2>IE9</h2>
    <![endif]-->



    说明:如果你的浏览器版本为多少即会显示IE多少,针对IE6-IE9实验</body>
    </html>

    说明:以上针对不同IE显示不同网页内容DIV+CSS实例实验。

    DIV+CSS实例二
    让IE6-IE8显示不同CSS样式效果,DIV CSS代码如下:

    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>CSS IF条件hack实例</title>
    <!--[if IE 6]> 
    <style type="text/css">
    .divcss{ color:#F00;}
    </style>
    <![endif]-->
    <!--[if IE 7]> 
    <style type="text/css">
    .divcss{ color:#FF0;}
    </style>
    <![endif]-->
    <!--[if IE 8]> 
    <style type="text/css">
    .divcss{ color:#00F;}
    </style>
    <![endif]-->

    <!--[if IE 9]> 
    <style type="text/css">
    .divcss{ color:#000;}
    </style>
    <![endif]-->
    </head>
    <body>
    <div class="divcss">
    DIV CSS实验提示:

    我在IE6下是红颜色,在IE7下是黄颜色,在IE8下是蓝颜色,在IE9下是黑色

    </body>
    </html>

    说明:以上实验仅实验IE6-IE9下if HACK。

    您需要登录后才可以回帖 登录 | 注册

    本版积分规则 发表回复

      

    北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
    未成年举报专区
    中国互联网协会会员  联系我们:huangweiwei@itpub.net
    感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

    清除 Cookies - ChinaUnix - Archiver - WAP - TOP