js实现页面跳转的代码举例

发布时间:2020-04-20编辑:脚本学堂
本篇文章介绍下,如何使用javascript实现页面的跳转,适用于带参数或不带参数的Url跳转,有需要的朋友,可以参考下。

代码如下:
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>跳转到脚本学堂_www.jb200.com</title>
<noscript>
<meta http-equiv="refresh" content="0; url=http://www.jb200.com/index.php?a=123" />
</noscript>
<script type="text/javascript">
<!--
var hrefstr, pos, parastr, target;
target = 'http://www.jb200.com/index.php?a=123';
hrefstr = window.location.href;
pos = hrefstr.indexOf("?");
parastr = hrefstr.substring(pos + 1);
if (pos > 0) {
window.location.href = target + '&' + parastr;
} else {
window.location.href = target;
}
//-->
</script>
</head>
<body>
请稍候,正在转入...
</body>
</html>

您可能感兴趣的文章:
js 控制页面跳转的五种方法
js 下拉菜单点击链接跳转的代码
select下拉列表框中超链接跳转
select下拉列表菜单中超链接跳转
js 倒计时多少秒后跳转页面
js实现用户登录自动跳转的代码
焦点自动跳转的js实现代码
js页面跳转 option location页面跳转
js页面跳转方式 js页面跳转举例