嗨首先(Jezen Thomas ty你的代码帮助我,但我无法使用它),我必须让这个代码工作,而不是调用jquery(因为我们不知道它是否会被支持),所以基本上我必须得到此代码显示ie版本,仅使用html和javascript
<html>
<!--[if lt IE 7 ]> <html class="ie6"> <![endif]--
<!--[if IE 7 ]> <html class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class=""> <!--<![endif]-->
<head>
<title>A HTML document needs a title to be valid.</title>
</head>
<body>
<script type="text/javascript">
window.onload = function mytest(){
"use strict";
// Detecting IE
var oldIE
if ($('html').is('.ie6, .ie7, .ie8')) {
oldIE = 1;
}
if (oldIE == 1) {
document.write("version<ie9")
} else {
document.write(" version => ie9")
}
}
</script>
</body>
</html>
我必须删除($),但我不知道要替换它(我最近刚开始使用javascript)
答案 0 :(得分:1)
警报(navigator.userAgent的);
我希望能为您提供所需的开始。