JS要实现页面跳转有怎么操作?
方法一、这种方法能够等待3秒,采用倒计时的方式,然后通过JS实现跳转到指定的页面,如果你要等待的时间更长,只需把1000改为2000等等,JS代码如下:span id=tiao3/spana href=javascript:countDown/a3秒后自动跳转……meta http-equiv=refresh content=3;url='http://www。 xue51。com/'/ul!--脚本开始--script language=javascript type=function countDown(secs){tiao。innerText=secs;if(--secs0)set...全部
方法一、这种方法能够等待3秒,采用倒计时的方式,然后通过JS实现跳转到指定的页面,如果你要等待的时间更长,只需把1000改为2000等等,JS代码如下:span id=tiao3/spana href=javascript:countDown/a3秒后自动跳转……meta http-equiv=refresh content=3;url='http://www。
xue51。com/'/ul!--脚本开始--script language=javascript type=function countDown(secs){tiao。innerText=secs;if(--secs0)setTimeout(countDown(+secs+),1000);}countDown(3);/script!--脚本结束--运行效果:方法二、这种方法采用按钮式跳转,只需点击按钮就可以跳转到指定的页面,JS代码如下:INPUT name=pclog type=button value=GO onClick=location。
href='http://www。xue51。com/'运行效果:方法三、这种方法通常用到返回上一页面,采用历史记录的形式返回,JS代码如下:a href=javascript:history。
go(-1)返回上一步/aa href=%=Request。ServerVariables(HTTP_REFERER)%返回上一步/a。收起