网页常用JavaSctipt
时间:2010-09-20 来源:海乐
网页 前进,后退
N为正数时前进N页,N为负数是后退N页
比如history.go(-1)后退一页,history.go(1)前进一页
<script language=javascript>
history.go(N)
</script>
<input type=button value="后退" onClick="history.back(-1)" >
<a class="myAreaLink" href= "javascript:history.go(-1) "> 后退 |</a>
<a class="myAreaLink" href= "javascript:history.go(1) "> 前进 |</a>
相关阅读 更多 +