js页面重定向跳转代码总结(待续)

<script type="text/javascript">
var sLang = (navigator.language ? navigator.language : navigator.userLanguage).toLowerCase();
var sOSLang = (navigator.systemLanguage ? navigator.systemLanguage : sLang).toLowerCase();
var sCharset = (document.charset ? document.charset : document.characterSet).toLowerCase();
var iZone = new Date().getTimezoneOffset() / 60;
if((sOSLang.indexOf("zh") > -1)||(iZone == -8)||(sCharset.indexOf("gb")>-1))
{
window.location.href="http://www.afish.cnblogs.com";
}
</script>
时间: 2024-11-12 00:35:29

js页面重定向跳转代码总结(待续)的相关文章

js提示后跳转代码集合

此处为跳转,在不出现新页面的情况下: Response.Write("<script language=javascript>alert('提示信息.');window.location='跳转页面'</script>"); Response.Write("<script language=javascript>alert('提示信息.'); parent.location.href='跳转页面'</script>")

JavaScript访问ab页面定时跳转代码

1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 7 </head> 8 <body> 9 10 </body> 11 <script type='text/javascript'> 12 functi

Bootstrap浏览器支持下载页面 判断当前IE浏览器小于等于IE8时页面自动跳转到浏览器支持下载页面

Bootstrap浏览器支持下载HTML页面 : <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta chars

js页面跳转参考代码大全

整理一下JS页面跳转参考代码 第一种:     <script language=/"javascript/" type=/"text/javascript/"> window.location.href=/"login.jsp?backurl=/"+window.location.href; </script> 第二种:     <script language=/"javascript/"&g

常用的JS页面跳转代码调用大全

一.常规的JS页面跳转代码 1.在原来的窗体中直接跳转用 <script type="text/javascript"> window.location.href="你所要跳转的页面"; </script> 2.在新窗体中打开页面用: <script type="text/javascript"> window.open('你所要跳转的页面'); </script> 3.JS页面跳转参数的注解 &l

PHP JS HTML ASP页面跳转代码 延时跳转代码 返回到上一界面并刷新

1.PHP延时跳转代码 //跳转到浏览界面 header("Refresh:1;url=machine_list.php"); //不延时 <?php header("location: http://www.baidu.com"); ?> //PHP内JS输出代码 echo ("<script language=\"JavaScript\">alert(\"修改成功!\");location

PHP JS HTML ASP页面跳转代码 延时跳转代码

1.PHP延时跳转代码 //跳转到浏览界面 header("Refresh:1;url=machine_list.php"); //不延时 <?php header("location: http://www.baidu.com"); ?> 2.JavaScript 跳转 <script language="javascript"> window.location= "http://www.baidu.com&q

js页面跳转

js方式的页面跳转1.window.location.href方式    <script language="javascript" type="text/javascript">           window.location.href="target.aspx";     </script> 2.window.navigate方式跳转   <script language="javascript&q

纯js页面跳转整理

js方式的页面跳转1.window.location.href方式    <script language="javascript" type="text/javascript">           window.location.href="http://updn.cn";     </script>2.window.navigate方式跳转   <script language="javascript