用 jquery1.10
但是9又不支持了
@鑫昕: 设置一下,8用1.1的包,9用2.0的包。
@盟怀部孩: 怎么设置?
@鑫昕:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!--[if lt IE 9]>
<script src="jquery-1.9.0.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="jquery-2.0.0.js"><</script>
<!--<![endif]-->
</head>
<body><form action="http://beta.ccims.com.cn/r.php" method="post">
<input type="submit" value="t"/>
</form>
</body>
</html>
其中
<!--[if lt IE 9]>
<script src="jquery-1.9.0.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="jquery-2.0.0.js"><</script>
<!--<![endif]-->
是关键,中间<!--[if gte IE 9]><!-->中的<!-->一定不能省略否则在ie之外的浏览器就无法加载js了