Javascript实例教程(7) 利用Javascript基于浏览器类型的重定向
2008-01-05 19:00:54 来源:WEB开发网核心提示:基于浏览器类型的重定向的实现可以通过使用javascript函数来检查navigator.userAgent的字符串“MSIE”,它将告诉你用户是否使用Microsoft Internet EXPlorer(微软的IE浏览器),Javascript实例教程(7) 利用Javascript基于浏览器类型的重定向,通过修改
基于浏览器类型的重定向的实现可以通过使用javascript函数来检查navigator.userAgent的字符串“MSIE”,它将告诉你用户是否使用Microsoft Internet EXPlorer(微软的IE浏览器)。通过修改windows.location函数可以重定向到正确的URL(同意资源定位器)。下面是具体的代码:
<Html>
<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 <A HREF="javascript:redirectClient('explorer.html',
'netscape.html')">here</A>
to redirect based on the user's browser.
</BODY>
</HTML>
点击此处去测试效果页
<Html>
<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 <A HREF="javascript:redirectClient('explorer.html',
'netscape.html')">here</A>
to redirect based on the user's browser.
</BODY>
</HTML>
点击此处去测试效果页
Tags:Javascript 实例 教程
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接