<script type="text/javascript">
var browser=navigator.appName
var b_version=navigator.appVersion
var version=b_version.split(";");
var trim_Version=version[1].replace(/[ ]/g,"");
if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE6.0")
{
alert("请使用IE9,谷歌,火狐等浏览器,不支持IE低版本!");
}
else if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE7.0")
{
alert("请使用IE9,谷歌,火狐等浏览器,不支持IE低版本!");
}
else if(browser=="Microsoft Internet Explorer" && trim_Version=="MSIE8.0")
{
alert("请使用IE9,谷歌,火狐等浏览器,不支持IE低版本!");
}
else
{
window.location="login.action";
}
</script>