• 关于IF现if html内部写法兼容问题


    <!--[if  IE  6]>  如果误写成  <!--[if   IE6]>  ,JS程序将出错。


    -------------------------------
    < !--[if   IE  6]> ……< ![endif]--> 
    < !--[if  lte  IE  6]> ……< ![endif]-->

    Ite:是小于或等于IE6浏览器。

    条件注释只能在windows Internet Explorer(以下简称IE)下使用,因此我们可以通过条件注释来为IE添加特别的指令。
    通俗点,条件注释就是一些if判断,但这些判断不是 在脚本里执行的,而是直接在html代码里执行的,比如:
    < !--[if IE]>
    这里是正常的html代码
    < ![endif]-->
    < !--[if IE 5]>
    < h2> 版本 5< /h2>
    < ![endif]-->

    ********************************
    <!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]-->

    <!--[if IE]> 所有的IE可识别 <![endif]-->

    <!--[if IE 5]> 仅IE5.0与IE5.5 <![endif]-->

    <!--[if gt IE 5.0]> IE5.0以及IE5.0以上版本 <![endif]-->

    <!--[if IE 6]> 仅IE6 <![endif]-->

    <!--[if lt IE 6]> IE6以及IE6以下版本 <![endif]-->

    <!--[if gte IE 6]> IE6以及IE6以上版本 <![endif]-->

    <!--[if IE 7]> 仅IE7 <![endif]-->

    <!--[if lt IE 7]> IE7以及IE7以下版本 <![endif]-->

    <!--[if gte IE 7]> IE7以及IE7以上版本 <![endif]-->
  • 相关阅读:
    curl 设置超时时间
    allure 2
    shell 给文件每一行都添加指定字符串
    shell 文件的包含
    shell 求数组的平均值,求和,最大值,最小值
    shell 编写进度条
    shell 换行与不换行
    Linux常用命令简述--dirname与basename
    shell中脚本参数传递getopts
    Shell 中eval的用法
  • 原文地址:https://www.cnblogs.com/xym123139/p/2469106.html
Copyright © 2020-2023  润新知