本文目录一览:
- 1、什么JS跳转?
- 2、JS代码怎么跳转到另一个页面呢
- 3、如何使用JavaScript实现 按钮跳转页面功能?
- 4、如何用js跟踪页面的跳转
- 5、html网页跳转javascript代码实现
- 6、js如何根据系统时间指定跳转,麻烦写代码!谢谢
什么JS跳转?
js可以轻松的实现网页的跳转,平时我们在访问某一网站时却被跳转到了另一个网站上,这其中的跳转方法可以有很多种,现在给大家分享一下js实现页面跳转的方法。
一、js直接跳转。实现代码如下:
script type="text/javascript"
window.location.href = '网址';
/script
也可用self.location='网址';
二、页面停留指定时间再跳转,如3秒:
script type="text/javascript"
function jumurl(){
window.location.href = '网址';
}
setTimeout(jumurl,3000);
/script
三、页面跳出框架
script type="text/javascript"
top.location.href='网址';
/script
四、返回上一页
script type="text/javascript"
window.history.back(-1);
/script
JS代码怎么跳转到另一个页面呢
script language="javascript" function IsIndex() { var strSession = ''.toString(); if( strSession == "") { alert('请登陆'); location.href = '你要登录的页面的文件名'; return false; } } /script
如何使用JavaScript实现 按钮跳转页面功能?
javascript中的location.href有很多种用法,主要如下:
self.location.href="/url" 当前页面打开URL页面
location.href="/url" 当前页面打开URL页面
windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同
this.location.href="/url" 当前页面打开URL页面
parent.location.href="/url" 在父页面打开新页面
top.location.href="/url" 在顶层页面打开新页面
如何用js跟踪页面的跳转
常规的JS页面跳转代码
1、在原来的窗体中直接跳转用
script type="text/javascript"
window.location.href="你所要跳转的页面";
/script
2、在新窗体中打开页面用:
script type="text/javascript"
window.open('你所要跳转的页面');
/script
3、JS页面跳转参数的注解
SCRIPT LANGUAGE="javascript"
!--
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')
//写成一行
--
/SCRIPT
参数解释:
SCRIPT LANGUAGE="javascript" js脚本开始;
window.open 弹出新窗口的命令;
'page.html' 弹出窗口的文件名;
'newwindow' 弹出窗口的名字(不是文件名),非必须,可用空'代替;
height=100 窗口高度;
width=500 窗口宽度;
top=0 窗口距离屏幕上方的象素值;
left=0 窗口距离屏幕左侧的象素值。
html网页跳转javascript代码实现
代码如下:
html
head
title page A /title
script type="text/javascript"
function delyLoad(){
setTimeout(function(){
window.location.href='b.html';
},5000)
}
/script
/head
body onload="delyLoad()"
h1A/h1
/body
/html
首先做一个计时器,记时5秒。5秒后将location的链接转为b.html。如果b.html与a不在同一个页面下,最好写绝对路径
js如何根据系统时间指定跳转,麻烦写代码!谢谢
script
var h=new Date().getHours();
if(h7h20)location.href="A页面url";
else location.href="B页面url";
/script