我是靠谱客的博主 称心大树,最近开发中收集的这篇文章主要介绍HTML_IF判断,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

 <keywords>

if条件共包含6种选择方式:是否、大于、大于或等于、小于、小于或等于、非指定版本

  • 是否:

  • 指定是否IE或IE某个版本。关键字:

  • 大于:

  • 选择大于指定版本的IE版本。关键字:gt(greater than)

  • 大于或等于:

  • 选择大于或等于指定版本的IE版本。关键字:gte(greater than or equal)

  • 小于:

  • 选择小于指定版本的IE版本。关键字:lt(less than)

  • 小于或等于:

  • 选择小于或等于指定版本的IE版本。关键字:lte(less than or equal)

  • 非指定版本:

  • 选择除指定版本外的所有IE版本。关键字:!

<version>

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>if条件Hack_CSS参考手册_web前端开发参考手册系列</title>
<style>
h1{margin:10px 0;font-size:16px;}
span{display:none;}
.not-ie{display:inline;}
</style>
<!--[if IE]>
<style>
.ie{display:inline;}
.not-ie{display:none;}
</style>
<![endif]-->
<!--[if IE 5]>
<style>
.ie5{display:inline;}
</style>
<![endif]-->
<!--[if IE 6]>
<style>
.ie6{display:inline;}
</style>
<![endif]-->
<!--[if IE 7]>
<style>
.ie7{display:inline;}
</style>
<![endif]-->
<!--[if IE 8]>
<style>
.ie8{display:inline;}
</style>
<![endif]-->
<!--[if IE 9]>
<style>
.ie9{display:inline;}
</style>
<![endif]-->
</head>
<body>
<div>
 您正在使用
 <span>非IE</span>
 <span>IE</span>
 <span>5</span>
 <span>6</span>
 <span>7</span>
 <span>8</span>
 <span>9</span>
 浏览器
</div>
</body>
</html>

 

转载于:https://my.oschina.net/miaowang/blog/209298

最后

以上就是称心大树为你收集整理的HTML_IF判断的全部内容,希望文章能够帮你解决HTML_IF判断所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部