HTML中的History go()方法用于从历史记录列表中加载特定的URL。如果已知要从历史记录中加载的特定页面的数字或URL,则它是history.back()和history.forward()方法的更好替代。
用法:
history.go( number|URL )
参数:此方法接受单个参数number | URL,该参数是必需的,用于指定历史记录列表中URL的编号/位置或页面的URL。 -1用于向后翻一页,而1用于向后翻一页。
下面的程序演示了HTML中的History go()方法:
例:
<!DOCTYPE html>
<html>
<head>
<title>DOM History.go() Method</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM History.go( ) Method</h2>
<p>
For going to the second next URL in the
history, double click the "Go to the
second next URL" button:
</p>
<button ondblclick="history_goforward()">
Go to the second next URL
</button>
<script>
function history_goforward() {
window.history.go(2);
}
</script>
</body>
</html>
输出:
范例2:用于转到历史记录列表中的上一个URL。
<!DOCTYPE html>
<html>
<head>
<title>DOM History.go() Method</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>DOM History.go() Method</h2>
<p>
For going to the previous URL in the
history, double click the "Go to the
previous URL" button:
</p>
<button ondblclick="history_goback()">
Go to the previous URL
</button>
<script>
function history_goback() {
window.history.go(-1);
}
</script>
</body>
</html>
输出:
支持的浏览器:下面列出了History back()方法支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- HTML DOM History forward()用法及代码示例
- HTML DOM History back()用法及代码示例
- HTML History length用法及代码示例
- HTML DOM contains()用法及代码示例
- HTML DOM getElementsByName()用法及代码示例
- HTML DOM requestFullscreen()用法及代码示例
- HTML DOM console.log()用法及代码示例
- HTML DOM isDefaultNamespace()用法及代码示例
- HTML DOM appendChild()用法及代码示例
- HTML DOM setAttributeNode()用法及代码示例
- HTML DOM hasAttributes()用法及代码示例
- HTML DOM getElementById()用法及代码示例
- HTML DOM focus()用法及代码示例
- JQuery html()用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM History go() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。