js点击历史记录
Posted 菜鸟不忘初心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js点击历史记录相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>history对象</title>
</head>
<input type="button" id="btn" value="获取历史记录">
<body>
<script>
var btn=document.getElementById("btn");
btn.onclick=function () {
var length= history.length;
alert(length);
}
</script>
</body>
</html>
以上是关于js点击历史记录的主要内容,如果未能解决你的问题,请参考以下文章