<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>

arrow
arrow
    創作者介紹
    創作者 痞客興 的頭像
    痞客興

    痞客興的部落格

    痞客興 發表在 痞客邦 留言(0) 人氣()