-5

嗨首先(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)

4

1 回答 1

1

警报(navigator.userAgent);

我希望这能给你你需要的开始。

于 2013-01-29T17:06:32.350 回答