01.
<script>
02.
function
GetIEVersion() {
03.
var
sAgent = window.navigator.userAgent;
04.
var
Idx = sAgent.indexOf(
"MSIE"
);
05.
06.
07.
if
(Idx > 0)
08.
return
parseInt(sAgent.substring(Idx+ 5, sAgent.indexOf(
"."
, Idx)));
09.
10.
11.
else
if
(!!navigator.userAgent.match(/Trident\/7\./))
12.
return
11;
13.
14.
else
15.
return
0;
16.
}
17.
18.
if
(GetIEVersion() > 0){
19.
window.open(
''
,
'_self'
); window.close();
20.
}
21.
22.
</script>