Javascript实例教程(7) 利用Javascript基于浏览器类型的重定向
今天图老师小编要跟大家分享Javascript实例教程(7) 利用Javascript基于浏览器类型的重定向,精心挑选的过程简单易学,喜欢的朋友一起来学习吧!
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
点击此处去测试效果页


