站内搜索: 请输入搜索关键词

当前页面: 开发资料首页Javascript 专题Javascript实例教程(8) 利用Javascript基于浏览器类型的重定向

Javascript实例教程(8) 利用Javascript基于浏览器类型的重定向

摘要: Javascript实例教程(8) 利用Javascript基于浏览器类型的重定向
<textarea readonly style="border:none;font-family:Courier New;line-height:150%;width:760px;overflow-y:visible"> 基于浏览器类型的重定向的实现可以通过使用JavaScript函数来检查navigator.userAgent的字符串“MSIE”,它将告诉你用户是否使用Microsoft Internet Explorer(微软的IE浏览器)。通过修改windows.location函数可以重定向到正确的URL(同意资源定位器)。下面是详细的代码:



<head>

<script LANGUAGE="JavaScript">


function redirectClient(ieurl, nsurl) {

// test for Internet Explorer (any version)

if (navigator.userAgent.indexOf("MSIE") != -1) {

window.location = ieurl;

} else {

// it's not IE so assume it's Netscape

window.location = nsurl;

}

}

//

</script>

</head>

<body>

Click
'netscape.html')">here

to redirect based on the user's browser.

</body>


</td> </tr> </table></td> </tr>   
</td> </tr> </table> </textarea>
↑返回目录
前一篇: Javascript实例教程(9) 检验表单有效性
后一篇: Javascript实例教程(7) 利用Javascript进行密码保护