我想将使用Internet Explorer 8及以下版本的用户重定向到其他网站(例如www.google.com)
我从这里找到了下面的java代码:http://www.daobydesign.com/blog/tips/css-html/detect-redirect-script-for-internet-explorer-ie/
并将其修改为Internet Explorer 8,如下所示,但它无法正常工作。
<!--
var browser = navigator.appName
var ver = navigator.appVersion
var thestart = parseFloat(ver.indexOf("MSIE"))+1
var brow_ver = parseFloat(ver.substring(thestart+4,thestart+8))
if ((browser=="Microsoft Internet Explorer") && (brow_ver < 8))
{
window.location="http://www.google.com/";
}
//-->
我在这里测试了我的网站:Browser Render Website
我的网站My Website java脚本重定向适用于Internet Explorer 6和7但不适用于8.我如何才能包含ie.8?
谢谢!
答案 0 :(得分:3)
查看第if ((browser=="Microsoft Internet Explorer") && (brow_ver < 8))
行?最后一篇文章说,运行代码的浏览器版本必须小于8。你想要不到九个。所以,if ((browser=="Microsoft Internet Explorer") && (brow_ver < 9))