随着 Internet Explorer 10 通过标记删除浏览器检测,我需要一种新方法将使用 Internet Explorer 的用户重定向到新页面
我决定使用
<body>
<script type="text/javascript">
if (navigator.appName == 'Microsoft Internet Explorer')
{
self.location = "http://<url>"
}
</script>
,但什么也没有发生。我确信有一些我现在看不到的小东西。