-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path条件注释.html
56 lines (41 loc) · 1.37 KB
/
条件注释.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>条件注释</title>
<script type="text/javascript" src="http://image.tiancity.com/common/js/jquery-1.4.2.min.js"></script>
<link type="text/css" rel="stylesheet" href="http://img1.tiancitycdn.com/eve/common/css/base.css" />
<style>
h1,h2{ font-size:100%; font-weight:normal; }
h1{ font-size:80px; color:red;}
h2 { font-size:40px; }
</style>
<!--[if !IE]><!-->
<script type="text/javascript">
$(document).ready(function(){
$(":header").click(function(){
alert($(this).height())
});
});
</script>
<style>
h1{color:blue;}
</style>
<!--<![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]-->
</head>
<body>
<div class="line">
<h1>汉子中文是一回事么?dafldsADJFKLADJ</h1>
<h2>http://ymx.iteye.com/blog/1464468汉子中文是一回事么?dafldsADJFKLADJ</h2>
</div>
</body>
</html>