zoukankan      html  css  js  c++  java
  • HTML条件注释和javascript条件注释

    <!--[if IE]>
    This content is actually inside an HTML comment.
    It will only be displayed in IE.
    <![endif--]>
    <!--[if IE6]>
    This content is actually only be displayed by IE 6 and later.
    <![endif]-->
    <!--[if !IE]><-->
    This is normal HTML content,but IE will not display it because of
    the comment above and the comment below.
    <!--><![endif]-->

    This is normal content,displayed by all browsers.
    <script>
    /*@cc_on

     @if(@_jscript)
      //This code is inside a JS comment but is executed in IE.
      //This code is inside a conditional comment,which is also a
      //regular Javascript comment.IE runs it but other browsers ignore it.
      alert("You are using Internet Explorer");
     @else*/
      //This code is no longer inside a Javascript comment,but is still
      //inside the IE conditional comment. This means that all browsers
      //excepte IE will run this code.
      alert("you are not using Internet Explorer");
     /*@end
     @*/
     </script>

    有些用处,但非标准。

  • 相关阅读:
    cpio命令
    INI文件格式
    ubuntu死机怎么办
    vim中执行shell命令
    android安装busybox
    putty远程连接ubuntu
    java sdk与jdk区别
    一些使用JSP 编程技巧(转)
    ubuntu12.04 下安装 jdk1.7 maven3.1
    Java Web进阶步骤
  • 原文地址:https://www.cnblogs.com/qishichang/p/1183404.html
Copyright © 2011-2022 走看看