<html>
<head>
<title>上下頁及更新的按鈕</title>
<script language="javascript">
function back()
{
history.go(-1); //往前一頁
}
function forward()
{
history.go(+1); //往後一頁
}
function refresh()
{
history.go(-0) //刷新頁面
}
</script>
</head>
<body>
<input type=button value=往前一頁 onclick="back()">
<input type=button value=刷新頁面 onclick="refresh()">
<input type=button value=往後一頁 onclick="forward()">
<br/>
在頁面上新增三個按鈕,功能分別是"往前一頁""刷新頁面"及"往後一頁".
</body>
</html>
文章標籤
全站熱搜
留言列表